File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -157,6 +157,7 @@ function createSuitesGlobalSelectButtons(setSuiteEnabled) {
157
157
buttons . className = "button-bar" ;
158
158
159
159
let button = document . createElement ( "button" ) ;
160
+ button . className = "select-all" ;
160
161
button . textContent = "Select all" ;
161
162
button . onclick = ( ) => {
162
163
for ( let suiteIndex = 0 ; suiteIndex < Suites . length ; suiteIndex ++ )
@@ -168,6 +169,7 @@ function createSuitesGlobalSelectButtons(setSuiteEnabled) {
168
169
169
170
button = document . createElement ( "button" ) ;
170
171
button . textContent = "Unselect all" ;
172
+ button . className = "unselect-all" ;
171
173
button . onclick = ( ) => {
172
174
for ( let suiteIndex = 0 ; suiteIndex < Suites . length ; suiteIndex ++ )
173
175
setSuiteEnabled ( suiteIndex , false ) ;
Original file line number Diff line number Diff line change @@ -257,6 +257,14 @@ button,
257
257
gap : 3px ;
258
258
}
259
259
260
+ .developer-mode-content .select-all ::before {
261
+ content : "✔ " ;
262
+ }
263
+
264
+ .developer-mode-content .unselect-all ::after {
265
+ content : " ✘" ;
266
+ }
267
+
260
268
.developer-mode-content .settings label {
261
269
width : 100% ;
262
270
display : flex;
You can’t perform that action at this time.
0 commit comments