github.com/fanux/shipyard@v0.0.0-20161009071005-6515ce223235/controller/static/semantic/src/definitions/globals/reset.less (about)

     1  /*!
     2   * # Semantic UI - Reset
     3   * http://github.com/semantic-org/semantic-ui/
     4   *
     5   *
     6   * Copyright 2014 Contributors
     7   * Released under the MIT license
     8   * http://opensource.org/licenses/MIT
     9   *
    10   */
    11  
    12  /*******************************
    13              Theme
    14  *******************************/
    15  
    16  @type    : 'global';
    17  @element : 'reset';
    18  
    19  @import (multiple) '../../theme.config';
    20  
    21  /*******************************
    22               Reset
    23  *******************************/
    24  
    25  /* Border-Box */
    26  *,
    27  *:before,
    28  *:after {
    29    box-sizing: inherit;
    30  }
    31  html {
    32    box-sizing: border-box;
    33  }
    34  
    35  /* iPad Input Shadows */
    36  input[type="text"], input[type="email"], input[type="search"], input[type="password"] {
    37    -webkit-appearance: none;
    38    -moz-appearance: none; /* mobile firefox too! */
    39  }
    40  
    41  .loadUIOverrides();