Browse Source

feat(aot): improve AOT UI/UX

master
hmuresan 3 years ago
parent
commit
02ec30b8ff
3 changed files with 5 additions and 6 deletions
  1. 4
    3
      css/_mini_toolbox.scss
  2. 0
    2
      css/_variables.scss
  3. 1
    1
      react/features/always-on-top/Toolbar.js

+ 4
- 3
css/_mini_toolbox.scss View File

@@ -8,11 +8,11 @@
8 8
     .toolbox-icon {
9 9
         cursor: pointer;
10 10
         padding: 7px;
11
-        width: 25px;
12
-        height : 25px;
11
+        width: 22px;
12
+        height : 22px;
13 13
 
14 14
         &.toggled {
15
-            background: $AOTToolbarButtonToggleColor;
15
+            background: none;
16 16
         }
17 17
 
18 18
         &.disabled {
@@ -27,6 +27,7 @@
27 27
     position: absolute;
28 28
     bottom: 10px;
29 29
     transform: translateX(-50%);
30
+    padding: 3px !important;
30 31
 }
31 32
 
32 33
 .filmstrip-toolbox {

+ 0
- 2
css/_variables.scss View File

@@ -42,8 +42,6 @@ $presence-idle: rgb(172, 172, 172);
42 42
 $newToolbarBackgroundColor: #131519;
43 43
 $newToolbarButtonHoverColor: rgba(255, 255, 255, 0.2);
44 44
 $newToolbarButtonToggleColor: rgba(255, 255, 255, 0.15);
45
-$AOTToolbarButtonHoverColor: rgba(14, 20, 35, 0.6);
46
-$AOTToolbarButtonToggleColor: rgba(14, 20, 35, 1);
47 45
 $menuBG:#242528;
48 46
 $newToolbarFontSize: 24px;
49 47
 $newToolbarHangupFontSize: 32px;

+ 1
- 1
react/features/always-on-top/Toolbar.js View File

@@ -52,8 +52,8 @@ export default class Toolbar extends Component<Props> {
52 52
                 onMouseOut = { onMouseOut }
53 53
                 onMouseOver = { onMouseOver }>
54 54
                 <AudioMuteButton />
55
-                <HangupButton customClass = 'hangup-button' />
56 55
                 <VideoMuteButton />
56
+                <HangupButton customClass = 'hangup-button' />
57 57
             </div>
58 58
         );
59 59
     }

Loading…
Cancel
Save