mirror of
https://github.com/nextcloud/server.git
synced 2026-03-02 21:41:12 -05:00
* unify shadow blur from 3px to 10px * remove opacity of background of app labels * for IE: use box-shadow as fallback (because the filter: drop-shadow is not supported) Signed-off-by: Morris Jobke <hey@morrisjobke.de>
25 lines
525 B
SCSS
25 lines
525 B
SCSS
/* ---- BROWSER-SPECIFIC FIXES ---- */
|
|
|
|
/* remove dotted outlines in Firefox */
|
|
::-moz-focus-inner {
|
|
border: 0;
|
|
}
|
|
|
|
/* fix height of select boxes for OS X */
|
|
select {
|
|
height: 32px;
|
|
}
|
|
|
|
/* deactivate show password toggle for IE. Does not work for 8 and 9+ have their own implementation. */
|
|
.ie #show, .ie #show+label {
|
|
display: none;
|
|
visibility: hidden;
|
|
}
|
|
|
|
.ie #header .menu,
|
|
.ie .header-left #navigation,
|
|
.ie .ui-datepicker,
|
|
.ie .ui-timepicker.ui-widget,
|
|
.ie #appmenu li span {
|
|
box-shadow: 0 1px 10px $color-box-shadow;
|
|
}
|