Skip to content

Commit ed07866

Browse files
committed
Remove fomantic dimmer module
1 parent 852547d commit ed07866

File tree

8 files changed

+54
-1116
lines changed

8 files changed

+54
-1116
lines changed

web_src/css/base.css

-4
Original file line numberDiff line numberDiff line change
@@ -680,10 +680,6 @@ input:-webkit-autofill:active,
680680
box-shadow: 0 6px 18px var(--color-shadow) !important;
681681
}
682682

683-
.ui.dimmer {
684-
background: var(--color-overlay-backdrop);
685-
}
686-
687683
.ui.dropdown .menu > .header {
688684
font-size: 0.8em;
689685
}

web_src/css/index.css

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
@import "./modules/table.css";
1717
@import "./modules/card.css";
1818
@import "./modules/checkbox.css";
19+
@import "./modules/dimmer.css";
1920
@import "./modules/modal.css";
2021

2122
@import "./modules/select.css";

web_src/css/modules/dimmer.css

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
/* These are the remnants of the fomantic dimmer module */
2+
3+
.ui.dimmer {
4+
position: fixed;
5+
top: 0;
6+
left: 0;
7+
right: 0;
8+
bottom: 0;
9+
background: var(--color-overlay-backdrop);
10+
opacity: 0;
11+
z-index: 1000;
12+
overflow-y: auto;
13+
justify-content: center;
14+
padding: 8px 0;
15+
}
16+
17+
.ui.active.dimmer {
18+
display: flex;
19+
opacity: 1;
20+
}
21+
22+
.ui.dimmer > * {
23+
position: static;
24+
margin: auto !important;
25+
}

0 commit comments

Comments
 (0)