浏览代码

dropdown color changes

master
Konstantyn Pahsura 9 年前
父节点
当前提交
15bc3b9ad4
共有 2 个文件被更改,包括 8 次插入14 次删除
  1. 3
    3
      css/_variables.scss
  2. 5
    11
      css/aui-components/dropdown.scss

+ 3
- 3
css/_variables.scss 查看文件

110
 /**
110
 /**
111
  * Forms
111
  * Forms
112
  */
112
  */
113
-$inputBg: #505F79;
114
-$inputBgHover: #505F79;
115
-$inputFontColor: #ECEEF1;
113
+$inputBg: $inputSemiBackground;
114
+$inputBgHover: $inputSemiBackground;
115
+$inputFontColor: $defaultDarkFontColor;

+ 5
- 11
css/aui-components/dropdown.scss 查看文件

3
         background-color: transparent;
3
         background-color: transparent;
4
 
4
 
5
         > a {
5
         > a {
6
+            background-color: $inputBg !important;
7
+            color: $inputFontColor !important;
8
+            border-color: $inputBg !important;
9
+            text-shadow: none !important;
6
             margin: 0 auto !important;
10
             margin: 0 auto !important;
7
             width: 100% !important;
11
             width: 100% !important;
8
         }
12
         }
32
     z-index: 900;
36
     z-index: 900;
33
 }
37
 }
34
 
38
 
35
-//Dark theme
36
-form.aui{
37
-    //Placeholder
38
-    .aui-select2-container.input-container-dark {
39
-        a.select2-choice {
40
-            text-shadow: none;
41
-        }
42
-    }
43
-}
44
-
45
 .aui-dropdown2.aui-style-default.dropdown-dark {
39
 .aui-dropdown2.aui-style-default.dropdown-dark {
46
     background-color: $defaultBackground;
40
     background-color: $defaultBackground;
47
     border-color: transparent;
41
     border-color: transparent;
48
-}
42
+}

正在加载...
取消
保存