Skip to content

Commit

Permalink
Fix linting and look of search button (#341)
Browse files Browse the repository at this point in the history
* Fix linting

* Fix look of search button
  • Loading branch information
mwalbeck authored Apr 12, 2024
1 parent 084a1af commit 81ea79e
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 11 deletions.
2 changes: 1 addition & 1 deletion css/apps/core/_text.scss
Original file line number Diff line number Diff line change
Expand Up @@ -76,5 +76,5 @@

.text-menubar .entry-action.is-active:not(.entry-action-item) .material-design-icon > svg,
.text-menubar button.entry-action__button.is-active .material-design-icon > svg {
fill: var(--color-primary-text) !important;
fill: var(--color-primary-text) !important;
}
4 changes: 2 additions & 2 deletions css/apps/thirdparty/_snappymail.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
/* Radio -------------------------------------------------------------------- */

#rl-app input {
background-color: var(--input-bg-clr,#fff);
color: var(--input-clr,#555);
background-color: var(--input-bg-clr, #fff);
color: var(--input-clr, #555);
}
27 changes: 20 additions & 7 deletions css/base/_elements.scss
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ input[type="submit"] {
}
}

.button-vue.button-vue--vue-secondary:not(.property-color__color-preview) {
.button-vue.button-vue--vue-secondary:not(.property-color__color-preview):not(
.unified-search__button
) {
background-color: var(--color-main-background) !important;
border: 1px solid var(--color-border) !important;
color: var(--color-main-text) !important;
Expand All @@ -49,10 +51,14 @@ input[type="submit"] {
}
}

.button-vue.unified-search__button:hover {
opacity: 1 !important;
}

input[type="text"] + .icon-confirm,
input[type="password"] + .icon-confirm,
input[type="email"] + .icon-confirm {
background-color: var(--color-background-darker) !important;
background-color: var(--color-background-darker) !important;
}

/* Input Fields -------------------------------------------------------------- */
Expand Down Expand Up @@ -84,15 +90,22 @@ textarea:not(:disabled) {
}
}

.checkbox-radio-switch:not(.checkbox-radio-switch--disabled) .checkbox-radio-switch__input:hover + .checkbox-radio-switch__label,
.checkbox-radio-switch:not(.checkbox-radio-switch--disabled) .checkbox-radio-switch__input:focus + .checkbox-radio-switch__label,
.checkbox-radio-switch:not(.checkbox-radio-switch--disabled)
.checkbox-radio-switch__input:hover
+ .checkbox-radio-switch__label,
.checkbox-radio-switch:not(.checkbox-radio-switch--disabled)
.checkbox-radio-switch__input:focus
+ .checkbox-radio-switch__label,
.checkbox-radio-switch:not(.checkbox-radio-switch--disabled) .checkbox-radio-switch__label:hover,
.checkbox-radio-switch:not(.checkbox-radio-switch--disabled) .checkbox-radio-switch__label:focus-within {
.checkbox-radio-switch:not(.checkbox-radio-switch--disabled)
.checkbox-radio-switch__label:focus-within {
background-color: var(--color-background-hover) !important;
}

.checkbox-radio-switch:not(.checkbox-radio-switch--disabled) .checkbox-radio-switch__input:focus + .checkbox-radio-switch__label {
box-shadow: unset !important;
.checkbox-radio-switch:not(.checkbox-radio-switch--disabled)
.checkbox-radio-switch__input:focus
+ .checkbox-radio-switch__label {
box-shadow: unset !important;
}

/* Action items -------------------------------------------------------------- */
Expand Down
3 changes: 2 additions & 1 deletion css/server/_server.scss
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@
.app-navigation-entry-menu::after,
.menu::after,
.popovermenu::after,
.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^="bottom"] .v-popper__arrow-container {
.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^="bottom"]
.v-popper__arrow-container {
border-bottom-color: var(--color-border) !important;
}

Expand Down

0 comments on commit 81ea79e

Please sign in to comment.