154 lines
3.8 KiB
SCSS
154 lines
3.8 KiB
SCSS
.nc-theming-main-background {
|
|
background-color: $color-primary;
|
|
}
|
|
|
|
.nc-theming-main-text {
|
|
color: $color-primary-text;
|
|
}
|
|
|
|
.nc-theming-contrast {
|
|
color: $color-primary-text;
|
|
}
|
|
|
|
@if (lightness($color-primary) > 50) {
|
|
#appmenu:not(.inverted) svg {
|
|
filter: invert(1);
|
|
}
|
|
#appmenu.inverted svg {
|
|
filter: none;
|
|
}
|
|
.searchbox input[type="search"] {
|
|
background: transparent url('../../../core/img/actions/search.svg') no-repeat 6px center;
|
|
}
|
|
#contactsmenu .icon-contacts {
|
|
background-image: url('../../../core/img/places/contacts-dark.svg');
|
|
}
|
|
#settings .icon-settings-white {
|
|
background-image: url('../../../core/img/actions/settings-dark.svg');
|
|
}
|
|
#appmenu .icon-more-white {
|
|
background-image: url('../../../core/img/actions/more.svg');
|
|
}
|
|
|
|
#body-login {
|
|
|
|
input {
|
|
border: 1px solid nc-lighten($color-primary-text, 50%);
|
|
}
|
|
input.primary {
|
|
background-color: $color-primary;
|
|
}
|
|
a, label, p {
|
|
color: $color-primary-text !important;
|
|
}
|
|
input[type='checkbox'].checkbox--white + label:before {
|
|
border-color: nc-darken($color-primary-element, 40%) !important;
|
|
}
|
|
input[type='checkbox'].checkbox--white:not(:disabled):not(:checked) + label:hover:before,
|
|
input[type='checkbox'].checkbox--white:focus + label:before {
|
|
border-color: nc-darken($color-primary-element, 30%) !important;
|
|
}
|
|
input[type='checkbox'].checkbox--white:checked + label:before {
|
|
border-color: nc-darken($color-primary-element, 30%) !important;
|
|
background-image: url('../../../core/img/actions/checkbox-mark.svg');
|
|
background-color: nc-darken($color-primary-element, 30%) !important;
|
|
}
|
|
}
|
|
} @else {
|
|
#appmenu:not(.inverted) svg {
|
|
filter: none;
|
|
}
|
|
#appmenu.inverted svg {
|
|
filter: invert(1);
|
|
}
|
|
}
|
|
|
|
/* Colorized svg images */
|
|
.icon-file, .icon-filetype-text {
|
|
background-image: url(./img/core/filetypes/text.svg?v=#{$theming-cachebuster});
|
|
}
|
|
|
|
.icon-folder, .icon-filetype-folder {
|
|
background-image: url(./img/core/filetypes/folder.svg?v=#{$theming-cachebuster});
|
|
}
|
|
|
|
.icon-filetype-folder-drag-accept {
|
|
background-image: url(./img/core/filetypes/folder-drag-accept.svg?v=#{$theming-cachebuster}) !important;
|
|
}
|
|
|
|
/* override styles for login screen in guest.css */
|
|
#header .logo,
|
|
#header .logo-icon {
|
|
background-image: url(#{$image-logo});
|
|
@if $theming-logo-mime != '' {
|
|
background-size: contain;
|
|
}
|
|
}
|
|
|
|
#body-login,
|
|
#firstrunwizard .firstrunwizard-header,
|
|
#theming-preview {
|
|
background-image: url(#{$image-login-background});
|
|
background-color: $color-primary;
|
|
}
|
|
|
|
input.primary {
|
|
background-color: $color-primary-element;
|
|
border: 1px solid $color-primary-text;
|
|
color: $color-primary-text;
|
|
}
|
|
|
|
@if (lightness($color-primary) > 50) {
|
|
#body-login input.login {
|
|
background-image: url('../../../core/img/actions/confirm.svg');
|
|
}
|
|
}
|
|
|
|
// plain background color for login page
|
|
@if $image-login-plain == 'true' {
|
|
#body-login, #firstrunwizard .firstrunwizard-header, #theming-preview {
|
|
background-image: none !important;
|
|
background-color: $color-primary;
|
|
}
|
|
#body-login {
|
|
|
|
a, label, p {
|
|
color: $color-primary-text !important;
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
@if ($color-primary == #ffffff) {
|
|
/* show grey border below header */
|
|
#body-user #header,
|
|
#body-settings #header,
|
|
#body-public #header {
|
|
border-bottom: 1px solid #ebebeb;
|
|
}
|
|
|
|
/* show triangle in header in grey */
|
|
#appmenu li a.active:before,
|
|
#header-right #settings #expand:before {
|
|
border-bottom-color:#ebebeb;
|
|
}
|
|
|
|
/* show border around quota bar in files app */
|
|
.app-files #quota .quota-container {
|
|
border: 1px solid #ebebeb;
|
|
}
|
|
}
|
|
|
|
/* jquery ui fixes */
|
|
.ui-widget-header {
|
|
border: 1px solid $color-primary;
|
|
background: $color-primary;
|
|
color: $color-primary-text;
|
|
}
|
|
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
|
|
border: 1px solid $color-primary;
|
|
color: $color-main-text;
|
|
}
|
|
.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
|
|
color: $color-main-text;
|
|
} |