Skip to content

Commit f01d4f3

Browse files
committed
feat: Revert css changes.
1 parent 7d40b58 commit f01d4f3

File tree

1 file changed

+73
-0
lines changed

1 file changed

+73
-0
lines changed

src/assets/App.css

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -286,6 +286,23 @@ a {
286286
opacity: 1;
287287
}
288288

289+
.blockHeaderDragButton {
290+
align-items: center;
291+
background: transparent;
292+
border: none;
293+
color: #96a2ae;
294+
cursor: grab;
295+
display: none;
296+
font-size: 24px;
297+
height: 100%;
298+
justify-content: center;
299+
left: 0;
300+
padding: 0;
301+
position: absolute;
302+
top: 0;
303+
width: 50px;
304+
}
305+
289306
.blockHeader:hover .blockHeaderDragButton {
290307
display: flex;
291308
}
@@ -340,9 +357,31 @@ a {
340357
}
341358

342359
.blockActionButton {
360+
background-color: var(--card-action-button-background);
361+
border-radius: 40px;
362+
border: none;
363+
box-shadow: 0 0 15px 2px var(--card-actions-background-shadow);
364+
color: var(--card-action-button-color);
365+
cursor: pointer;
366+
display: block;
367+
font-size: 18px;
368+
height: 28px;
369+
line-height: 12px;
370+
opacity: 1;
371+
padding: 0;
372+
pointer-events: all;
373+
text-align: center;
343374
transition:
344375
opacity 0.3s ease,
345376
right 0.3s ease;
377+
width: 28px;
378+
margin-bottom: 6px;
379+
margin-right: 6px;
380+
}
381+
382+
.blockActionButton.active {
383+
background-color: var(--card-active-action-button-background);
384+
color: var(--card-active-action-button-color);
346385
}
347386

348387
@media (hover: hover) {
@@ -661,6 +700,21 @@ Github languages colors
661700
background-color: #045797;
662701
}
663702

703+
.headerSelect {
704+
background-color: transparent;
705+
border: 0;
706+
border-bottom: 2px solid var(--app-name-text-color);
707+
color: inherit;
708+
cursor: pointer;
709+
font-weight: bold;
710+
padding: 0;
711+
}
712+
713+
.headerSelectIcon {
714+
position: relative;
715+
top: 2px;
716+
}
717+
664718
/**
665719
Contextify
666720
**/
@@ -1394,6 +1448,25 @@ Modal
13941448
column-gap: 8px;
13951449
align-items: center;
13961450
}
1451+
.modalCloseBtn {
1452+
align-items: center;
1453+
position: absolute;
1454+
background-color: transparent;
1455+
border-radius: 50%;
1456+
top: 0;
1457+
right: 0;
1458+
border: none;
1459+
color: var(--primary-text-color);
1460+
cursor: pointer;
1461+
display: flex;
1462+
justify-content: center;
1463+
margin: 0;
1464+
padding: 0;
1465+
text-align: center;
1466+
}
1467+
.modalCloseBtn:hover {
1468+
opacity: 0.7;
1469+
}
13971470
.settingContent .form {
13981471
display: flex;
13991472
flex-direction: row;

0 commit comments

Comments
 (0)