Jquery ocdialogs to scss and variables implementation
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
This commit is contained in:
parent
7bac8a32b4
commit
305a06b1e7
1 changed files with 6 additions and 5 deletions
|
@ -1,7 +1,8 @@
|
|||
.oc-dialog {
|
||||
background: #fff;
|
||||
color: #333;
|
||||
border-radius: 3px; box-shadow: 0 0 7px #888;
|
||||
background: $color-main-background;
|
||||
color: nc-darken($color-main-text, 20%);
|
||||
border-radius: 3px;
|
||||
box-shadow: 0 0 7px $color-box-shadow;
|
||||
padding: 15px;
|
||||
z-index: 10000;
|
||||
font-size: 100%;
|
||||
|
@ -17,7 +18,7 @@
|
|||
overflow: auto;
|
||||
}
|
||||
.oc-dialog-title {
|
||||
background: #fff;
|
||||
background: $color-main-background;
|
||||
margin-left: 12px;
|
||||
}
|
||||
.oc-dialog-buttonrow {
|
||||
|
@ -30,7 +31,7 @@
|
|||
padding-bottom: 0;
|
||||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
|
||||
background-image: linear-gradient(transparent, $color-main-background);
|
||||
border-bottom-left-radius: 3px;
|
||||
border-bottom-right-radius: 3px;
|
||||
}
|
Loading…
Reference in a new issue