diff options
Diffstat (limited to 'src/wwwroot/libraries/fomantic/src/definitions/globals/reset.less')
| -rw-r--r-- | src/wwwroot/libraries/fomantic/src/definitions/globals/reset.less | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/src/wwwroot/libraries/fomantic/src/definitions/globals/reset.less b/src/wwwroot/libraries/fomantic/src/definitions/globals/reset.less new file mode 100644 index 0000000..1ebcf6b --- /dev/null +++ b/src/wwwroot/libraries/fomantic/src/definitions/globals/reset.less @@ -0,0 +1,40 @@ +/*! + * # Fomantic-UI - Reset + * http://github.com/fomantic/Fomantic-UI/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */ + +/******************************* + Theme +*******************************/ + +@type : 'global'; +@element : 'reset'; + +@import (multiple) '../../theme.config'; + +/******************************* + Reset +*******************************/ + +/* Border-Box */ +*, +*:before, +*:after { + box-sizing: inherit; +} +html { + box-sizing: border-box; +} + +/* iPad Input Shadows */ +input[type="text"], input[type="email"], input[type="search"], input[type="password"] { + -webkit-appearance: none; + -moz-appearance: none; /* mobile firefox too! */ +} + +.loadUIOverrides(); |
