-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
78 lines (67 loc) · 2.34 KB
/
styles.css
File metadata and controls
78 lines (67 loc) · 2.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/* Clarity Design System - Floating Action Button Style - TEXT ONLY */
/* Use ID selector with !important to override any inherited vRO styles */
button#resize-btn {
position: fixed !important;
bottom: 24px !important;
right: 24px !important;
z-index: 999999 !important;
/* Clarity Action Blue - Force Background and Color */
background-color: #0072a3 !important;
color: #ffffff !important;
/* Typography */
font-family: 'Metropolis', 'Avenir Next', 'Helvetica Neue', Arial, sans-serif !important;
font-size: 11px !important;
font-weight: 600 !important;
line-height: 24px !important;
/* Vertically center text */
letter-spacing: 1px !important;
text-transform: uppercase !important;
text-align: center !important;
/* Box Model */
border: 1px solid #0072a3 !important;
border-radius: 3px !important;
padding: 0 16px !important;
/* Even padding since no icon */
margin: 0 !important;
height: 26px !important;
/* Slightly taller to accommodate text comfortably */
min-width: 80px !important;
width: auto !important;
min-height: 0 !important;
box-sizing: border-box !important;
/* Layout */
display: inline-block !important;
/* Simple block layout */
/* Effects */
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15) !important;
cursor: pointer !important;
opacity: 1 !important;
/* Reset Potential Inherited Styles */
outline: none !important;
text-decoration: none !important;
background-image: none !important;
}
/* Hover State */
button#resize-btn:hover {
background-color: #00567a !important;
border-color: #00567a !important;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2) !important;
color: #ffffff !important;
text-decoration: none !important;
}
/* Active/Pressed State */
button#resize-btn:active {
background-color: #004461 !important;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
transform: translateY(1px) !important;
}
/* Dragging state */
button#resize-btn[data-dragged="true"] {
cursor: grabbing !important;
background-color: #00567a !important;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3) !important;
}
/* Add a class for when the editor is expanded */
.editor-expanded {
transition: all 0.3s ease-in-out;
}