-
-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathreviewButton.module.css
More file actions
139 lines (119 loc) · 2.57 KB
/
Copy pathreviewButton.module.css
File metadata and controls
139 lines (119 loc) · 2.57 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
/* stylelint-disable */
.reviewBtn {
width: auto;
height: auto;
display: inline-flex;
align-items: center;
justify-content: center;
white-space: nowrap;
overflow: visible;
word-break: normal;
overflow-wrap: normal;
min-width: 140px;
flex: 0 0 auto;
z-index: 1000;
position: relative;
font-size: 12px;
--bs-btn-padding-y: 8px;
--bs-btn-padding-x: 8px;
font-weight: 600;
align-self: flex-start;
background-color: #c9d6c6 !important;
border-color: #285739 !important;
color: #285739 !important;
}
.review-button-dropdown {
max-height: 240px;
overflow-y: auto;
z-index: 9999;
}
.review-button-dropdown-dark {
background-color: #1c2541 !important;
border-color: #3a506b !important;
}
.dark-mode-btn {
background-color: #1c2541 !important;
color: #f1f1f1 !important;
}
.dark-mode-btn:hover,
.dark-mode-btn:focus {
background-color: #3a506b !important;
color: #fff !important;
}
.reviewBtn-dropdown-wrapper {
display: inline-flex;
align-items: center;
margin-top: 6px;
font-size: 12px;
font-weight: 500;
line-height: 20px;
padding: 6px 14px !important;
min-width: 140px;
height: auto !important;
white-space: nowrap;
}
.edit-link-btn {
padding: 0.375rem 0.75rem;
border-radius: 0.25rem;
margin-left: 5px;
display: flex;
align-items: center;
justify-content: center;
}
/* stylelint wants "context" range notation: (width <= Xpx) instead of (max-width: Xpx) */
@media screen and (width <= 1307px) and (width >= 1152px) {
.reviewBtn {
padding: 5px !important;
font-size: 0.75rem !important;
}
.review-button-dropdown {
max-height: 200px;
}
.edit-link-btn {
padding: 5px !important;
font-size: 0.65rem !important;
}
}
@media screen and (width <= 1151px) and (width >= 992px) {
.reviewBtn {
padding: 2px !important;
font-size: 0.65rem !important;
}
.review-button-dropdown {
max-height: 150px;
width: 100%;
}
.edit-link-btn {
padding: 2px !important;
font-size: 0.65rem !important;
}
}
@media screen and (width <= 991px) {
.reviewBtn {
padding: 2px !important;
font-size: 0.65rem !important;
width: auto;
}
.review-button-dropdown {
max-height: 150px;
width: 100%;
}
.edit-link-btn {
padding: 2px !important;
font-size: 0.65rem !important;
}
}
@media screen and (width <= 480px) {
.reviewBtn {
padding: 2px !important;
font-size: 0.65rem !important;
}
.review-button-dropdown {
max-height: 120px;
width: 100%;
}
.edit-link-btn {
padding: 2px !important;
font-size: 0.65rem !important;
}
}