瀏覽代碼

Fix some ui bugs

j8
Ilya Daynatovich 8 年之前
父節點
當前提交
e2ea16ea3f

+ 2
- 2
css/_inlay.scss 查看文件

3
     @include border-radius(3px);
3
     @include border-radius(3px);
4
     padding: 40px 38px 44px;
4
     padding: 40px 38px 44px;
5
     color: #fff;
5
     color: #fff;
6
-    background: lighten(desaturate($defaultBackground, 70%), 20%);
6
+    background: $inlayColorBg;
7
     text-align: center;
7
     text-align: center;
8
 
8
 
9
     &__title {
9
     &__title {
12
         color: $popoverFontColor;
12
         color: $popoverFontColor;
13
         font-size: 21px;
13
         font-size: 21px;
14
         letter-spacing: 0.3px;
14
         letter-spacing: 0.3px;
15
-        border-bottom: 1px solid $auiBorderColor;
15
+        border-bottom: 1px solid $inlayBorderColor;
16
     }
16
     }
17
 
17
 
18
     &__text {
18
     &__text {

+ 2
- 2
css/_jitsi_popover.scss 查看文件

14
     /*-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);*/
14
     /*-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);*/
15
     /*box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);*/
15
     /*box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);*/
16
     white-space: normal;
16
     white-space: normal;
17
-    margin-top: -10px;
17
+    margin-top: -13px;
18
 
18
 
19
     &__menu-padding {
19
     &__menu-padding {
20
         height: 10px;
20
         height: 10px;
21
         width: 100px;
21
         width: 100px;
22
         position: absolute;
22
         position: absolute;
23
-        bottom: -10px;
23
+        bottom: -13px;
24
     }
24
     }
25
 
25
 
26
     &__showmore {
26
     &__showmore {

+ 4
- 0
css/_side_toolbar_container.scss 查看文件

60
         box-sizing: border-box;
60
         box-sizing: border-box;
61
         color: #FFF;
61
         color: #FFF;
62
 
62
 
63
+        .input-control {
64
+            border: 0;
65
+        }
66
+
63
         /**
67
         /**
64
          * Titles and subtitles of inner containers.
68
          * Titles and subtitles of inner containers.
65
          */
69
          */

+ 0
- 1
css/_variables.scss 查看文件

77
 $rateStarDefault: #ccc;
77
 $rateStarDefault: #ccc;
78
 $rateStarActivity: #165ecc;
78
 $rateStarActivity: #165ecc;
79
 $rateStarSize: 34px;
79
 $rateStarSize: 34px;
80
-$feedbackCancelFontColor: #333;
81
 
80
 
82
 /**
81
 /**
83
  * Notifications
82
  * Notifications

+ 1
- 1
css/modals/_dialog.scss 查看文件

2
     visibility: visible;
2
     visibility: visible;
3
     height: auto;
3
     height: auto;
4
 
4
 
5
-    h3 {
5
+    h1, h2, h3, h4, h5, h6 {
6
         color: $auiDialogColor;
6
         color: $auiDialogColor;
7
     }
7
     }
8
 
8
 

+ 12
- 14
css/modals/feedback/_feedback.scss 查看文件

62
             text-align: center;
62
             text-align: center;
63
             padding: 10px 40px 20px 40px;
63
             padding: 10px 40px 20px 40px;
64
 
64
 
65
-            .form-control{
66
-                &__input {
67
-                    background-color: $feedbackInputBg;
68
-                    color: $feedbackInputTextColor;
69
-
70
-                    &::-webkit-input-placeholder {
71
-                        color: $feedbackInputPlaceholderColor;
72
-                    }
73
-                    &::-moz-placeholder {  /* Firefox 19+ */
74
-                        color: $feedbackInputPlaceholderColor;
75
-                    }
76
-                    &:-ms-input-placeholder {
77
-                        color: $feedbackInputPlaceholderColor;
78
-                    }
65
+            .input-control {
66
+                background-color: $feedbackInputBg;
67
+                color: $feedbackInputTextColor;
68
+
69
+                &::-webkit-input-placeholder {
70
+                    color: $feedbackInputPlaceholderColor;
71
+                }
72
+                &::-moz-placeholder {  /* Firefox 19+ */
73
+                    color: $feedbackInputPlaceholderColor;
74
+                }
75
+                &:-ms-input-placeholder {
76
+                    color: $feedbackInputPlaceholderColor;
79
                 }
77
                 }
80
             }
78
             }
81
 
79
 

+ 9
- 0
css/themes/_light.scss 查看文件

53
 $auiBorderColor: #ccc;
53
 $auiBorderColor: #ccc;
54
 $dialogTitleFontWeight: 400;
54
 $dialogTitleFontWeight: 400;
55
 
55
 
56
+/**
57
+* Inlay colors
58
+**/
59
+$inlayColorBg: lighten($defaultBackground, 20%);
60
+$inlayBorderColor: lighten($auiDialogContentBg, 10%);
61
+
56
 // Main controls
62
 // Main controls
57
 $inputBackground: $controlBackground;
63
 $inputBackground: $controlBackground;
58
 $inputBorderColor: #ccc;
64
 $inputBorderColor: #ccc;
68
 $dropdownColor: #333;
74
 $dropdownColor: #333;
69
 $errorColor: #c61600;
75
 $errorColor: #c61600;
70
 
76
 
77
+// Feedback colors
78
+$feedbackCancelFontColor: #333;
79
+
71
 // Popover colors
80
 // Popover colors
72
 $popoverBg: #000;
81
 $popoverBg: #000;
73
 $popoverFontColor: #ffffff;
82
 $popoverFontColor: #ffffff;

Loading…
取消
儲存