Skip to content
This repository was archived by the owner on Jun 1, 2025. It is now read-only.

Commit 00ca233

Browse files
committed
chore: rollback changes to hopefully pass Cypress tests
1 parent 2a8bd14 commit 00ca233

File tree

1 file changed

+41
-102
lines changed

1 file changed

+41
-102
lines changed

src/styles.scss

Lines changed: 41 additions & 102 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
@use 'sass:color';
22

3-
$navbar-height: 56px;
4-
$side-menu-width: 250px;
5-
$button-border-color: #ababab;
6-
$button-style-bg-color: #fff;
7-
$primary-color: #0e6cfa;
3+
$primary-color: #0d6efd;
84

95
@use 'bootstrap/scss/bootstrap' with (
106
$primary: $primary-color
@@ -27,31 +23,8 @@ $primary-color: #0e6cfa;
2723
// --slick-button-border-color: #c7c7c7;
2824
}
2925

30-
.bold {
31-
font-weight: bold;
32-
}
33-
34-
.italic {
35-
font-style: italic;
36-
}
37-
38-
.font18 {
39-
font-size: 18px;
40-
}
41-
42-
.hidden {
43-
display: none;
44-
}
45-
46-
.btn-icon {
47-
display: inline-flex;
48-
align-items: center;
49-
gap: 4px;
50-
}
51-
52-
.gap-4px {
53-
gap: 4px;
54-
}
26+
$button-border-color: #ababab;
27+
$button-style-bg-color: #fff;
5528

5629
.btn-group-xs > .btn,
5730
.btn-xs {
@@ -65,99 +38,65 @@ $primary-color: #0e6cfa;
6538
vertical-align: middle;
6639
}
6740

68-
.mdi-pencil.pointer:hover {
69-
color: #00bfff;
70-
}
71-
.mdi-trash-can.pointer:hover {
72-
color: #ff002b;
41+
.btn-icon {
42+
display: inline-flex;
43+
align-items: center;
44+
gap: 4px;
7345
}
7446

75-
.body-content {
76-
margin-top: $navbar-height;
47+
.gap-4px {
48+
gap: 4px;
7749
}
7850

79-
.lightblue {
80-
color: lightblue;
81-
}
51+
.side-menu {
52+
margin-left: 15px;
8253

83-
.red {
84-
color: red;
54+
.links {
55+
background-color: #f9f9f9;
56+
border-right: 1px solid #d0d0d0;
57+
overflow-y: auto;
58+
padding: 10px;
59+
li {
60+
width: 100%;
61+
}
62+
}
8563
}
8664

65+
.italic {
66+
font-style: italic;
67+
}
8768
.subtitle {
88-
font-size: 0.875em;
69+
font-size: 15px;
8970
font-style: italic;
9071
color: grey;
9172
margin-bottom: 10px;
9273
}
93-
74+
.lightblue {
75+
color: lightblue;
76+
}
77+
.red {
78+
color: red;
79+
}
9480
.faded {
9581
opacity: 0.7;
9682
}
97-
9883
.faded:hover {
99-
opacity: 0.9;
84+
opacity: 1;
10085
}
101-
102-
section {
103-
margin: 0;
86+
.pointer {
87+
cursor: pointer !important;
10488
}
105-
106-
/** Sidebar (left) and Content (right) */
107-
@media (min-width: 1200px) {
108-
.panel-wm-content .container {
109-
width: calc(1170px - #{$side-menu-width});
110-
}
89+
.padding10 {
90+
padding: 10px !important;
11191
}
112-
113-
.nav-docs {
114-
background-color: #fff;
115-
border-bottom: 1px solid #d6d6d6;
92+
.text-danger {
93+
color: red !important;
11694
}
117-
118-
.panel-wm {
119-
padding: #{$navbar-height} 0 0 0;
120-
121-
.nav-stacked {
122-
padding-bottom: 30px;
123-
124-
.nav-item {
125-
width: 100%;
126-
}
127-
}
128-
129-
.nav > li > a {
130-
padding: 10px 15px;
131-
border-radius: 0;
132-
}
133-
134-
.panel-wm-content {
135-
margin-left: $side-menu-width;
136-
padding: 0 1rem;
137-
}
138-
139-
.panel-wm-left {
140-
position: fixed;
141-
z-index: 400;
142-
transition: left 0.15s;
143-
top: $navbar-height;
144-
bottom: 0;
145-
left: 0;
146-
background-color: #f5f5f5;
147-
transform: translate3d(0, 0, 0);
148-
border-right: 1px solid #d0d0d0;
149-
overflow-y: auto;
150-
width: $side-menu-width;
151-
}
95+
.mdi-pencil.pointer:hover {
96+
color: #00bfff;
15297
}
153-
154-
.navbar {
155-
.navbar-brand {
156-
margin-right: 0px;
157-
}
158-
.logo {
159-
margin: 0 8px;
160-
}
98+
.mdi-trash-can.pointer:hover {
99+
color: #ff002b;
161100
}
162101

163102
.github-button-container {

0 commit comments

Comments
 (0)