Browse Source

Fixes border radius.

j8
yanas 8 years ago
parent
commit
23935d3d39
4 changed files with 20 additions and 20 deletions
  1. 1
    1
      css/_inlay.scss
  2. 1
    1
      css/_jitsi_popover.scss
  3. 17
    17
      css/_jquery.contextMenu.scss
  4. 1
    1
      css/_videolayout_default.scss

+ 1
- 1
css/_inlay.scss View File

1
 .inlay {
1
 .inlay {
2
     margin-top: 14%;
2
     margin-top: 14%;
3
-    @include border-radius(3px);
3
+    @include border-radius(4px);
4
     padding: 40px 38px 44px;
4
     padding: 40px 38px 44px;
5
     color: #fff;
5
     color: #fff;
6
     background: $inlayColorBg;
6
     background: $inlayColorBg;

+ 1
- 1
css/_jitsi_popover.scss View File

10
     color: $popoverFontColor;
10
     color: $popoverFontColor;
11
     background-color: $popoverBg;
11
     background-color: $popoverBg;
12
     background-clip: padding-box;
12
     background-clip: padding-box;
13
-    border-radius: 3px;
13
+    border-radius: $borderRadius;
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
- 17
css/_jquery.contextMenu.scss View File

1
 @charset "UTF-8";
1
 @charset "UTF-8";
2
-/*!
3
- * jQuery contextMenu - Plugin for simple contextMenu handling
4
- *
5
- * Version: v2.1.1
6
- *
7
- * Authors: Björn Brala (SWIS.nl), Rodney Rehm, Addy Osmani (patches for FF)
8
- * Web: http://swisnl.github.io/jQuery-contextMenu/
9
- *
10
- * Copyright (c) 2011-2016 SWIS BV and contributors
11
- *
12
- * Licensed under
13
- *   MIT License http://www.opensource.org/licenses/mit-license
14
- *
15
- * Date: 2016-02-28T09:53:18.890Z
2
+/*!
3
+ * jQuery contextMenu - Plugin for simple contextMenu handling
4
+ *
5
+ * Version: v2.1.1
6
+ *
7
+ * Authors: Björn Brala (SWIS.nl), Rodney Rehm, Addy Osmani (patches for FF)
8
+ * Web: http://swisnl.github.io/jQuery-contextMenu/
9
+ *
10
+ * Copyright (c) 2011-2016 SWIS BV and contributors
11
+ *
12
+ * Licensed under
13
+ *   MIT License http://www.opensource.org/licenses/mit-license
14
+ *
15
+ * Date: 2016-02-28T09:53:18.890Z
16
  */
16
  */
17
 @font-face {
17
 @font-face {
18
   font-family: "context-menu-icons";
18
   font-family: "context-menu-icons";
88
   list-style-type: none;
88
   list-style-type: none;
89
   background: #fff;
89
   background: #fff;
90
   border: 1px solid #bebebe;
90
   border: 1px solid #bebebe;
91
-  border-radius: 3px;
91
+  border-radius: $borderRadius;
92
   -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, .5);
92
   -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, .5);
93
           box-shadow: 0 2px 5px rgba(0, 0, 0, .5);
93
           box-shadow: 0 2px 5px rgba(0, 0, 0, .5);
94
 }
94
 }
156
           transform: translateY(-50%);
156
           transform: translateY(-50%);
157
 }
157
 }
158
 
158
 
159
-/**
160
- * Inputs
159
+/**
160
+ * Inputs
161
  */
161
  */
162
 .context-menu-item.context-menu-input {
162
 .context-menu-item.context-menu-input {
163
   padding: 5px 10px;
163
   padding: 5px 10px;

+ 1
- 1
css/_videolayout_default.scss View File

19
     &__background {
19
     &__background {
20
         @include topLeft();
20
         @include topLeft();
21
         background-color: black;
21
         background-color: black;
22
-        border-radius: $borderRadius - 1;
22
+        border-radius: $borderRadius;
23
         width: 100%;
23
         width: 100%;
24
         height: 100%;
24
         height: 100%;
25
     }
25
     }

Loading…
Cancel
Save