Put box-shadow for input focus in variables, apply form-control to p-multiselect
This commit is contained in:
parent
23f1b9da15
commit
6a4c30de0e
|
@ -8,10 +8,6 @@
|
|||
|
||||
&:first-child {
|
||||
font-size: 16px;
|
||||
|
||||
& > div {
|
||||
font-weight: $font-semibold;
|
||||
}
|
||||
}
|
||||
|
||||
& > div {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<form role="form" (ngSubmit)="updateDetails()" [formGroup]="form">
|
||||
<div class="form-group">
|
||||
<div class="form-group form-group-select">
|
||||
<label i18n for="nsfwPolicy">Default policy on videos containing sensitive content</label>
|
||||
<my-help>
|
||||
<ng-template ptTemplate="customHtml">
|
||||
|
@ -18,7 +18,7 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<div class="form-group form-group-select">
|
||||
<label i18n for="videoLanguages">Only display videos in the following languages/subtitles</label>
|
||||
<my-help>
|
||||
<ng-template ptTemplate="customHtml">
|
||||
|
|
|
@ -18,3 +18,7 @@ input[type=submit] {
|
|||
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.form-group-select {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
|
|
@ -240,10 +240,10 @@ ngb-tooltip-window {
|
|||
|
||||
&:focus-within,
|
||||
&:focus {
|
||||
box-shadow: 0 0 0 .2rem var(--mainColorLightest);
|
||||
box-shadow: #{$focus-box-shadow-form} var(--mainColorLightest);
|
||||
|
||||
&.input-error {
|
||||
box-shadow: 0 0 0 .2rem #{scale-color($red, $alpha: -75%)};
|
||||
box-shadow: #{$focus-box-shadow-form} #{scale-color($red, $alpha: -75%)};
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -80,7 +80,8 @@ $play-overlay-width: 18px;
|
|||
}
|
||||
|
||||
&.focus-visible {
|
||||
box-shadow: 0 0 0 2px var(--mainColor);
|
||||
box-shadow: #{$focus-box-shadow-form} var(--mainColorLightest);
|
||||
outline: none;
|
||||
}
|
||||
|
||||
img {
|
||||
|
|
|
@ -83,7 +83,7 @@
|
|||
@mixin button-focus($color) {
|
||||
&:focus,
|
||||
&.focus-visible {
|
||||
box-shadow: 0 0 0 .2rem $color;
|
||||
box-shadow: #{$focus-box-shadow-form} $color;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -372,7 +372,7 @@
|
|||
position: absolute;
|
||||
|
||||
&:focus + span {
|
||||
box-shadow: 0 0 0 .2rem var(--mainColorLightest);
|
||||
box-shadow: #{$focus-box-shadow-form} var(--mainColorLightest);
|
||||
}
|
||||
|
||||
& + span {
|
||||
|
@ -721,7 +721,7 @@
|
|||
height: max-content;
|
||||
|
||||
&:focus-within {
|
||||
box-shadow: 0 0 0 .2rem var(--mainColorLightest);
|
||||
box-shadow: #{$focus-box-shadow-form} var(--mainColorLightest);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -72,6 +72,8 @@ $sub-menu-margin-bottom: 30px;
|
|||
|
||||
$activated-action-button-color: black;
|
||||
|
||||
$focus-box-shadow-form: 0 0 0 .2rem;
|
||||
|
||||
/*** map theme ***/
|
||||
|
||||
// pass variables into a sass map,
|
||||
|
|
|
@ -241,6 +241,21 @@ p-table {
|
|||
|
||||
// multiselect customizations
|
||||
p-multiselect {
|
||||
.ui-multiselect {
|
||||
border-color: #C6C6C6;
|
||||
|
||||
&:not(.ui-state-disabled) {
|
||||
&:hover {
|
||||
border-color: #C6C6C6;
|
||||
}
|
||||
|
||||
&:focus,
|
||||
&.ui-state-focus {
|
||||
box-shadow: #{$focus-box-shadow-form} var(--mainColorLightest);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.ui-multiselect-label {
|
||||
font-size: 15px !important;
|
||||
padding: 4px 30px 4px 12px !important;
|
||||
|
|
Loading…
Reference in New Issue