Skip to content

Commit 1916514

Browse files
authored
Merge branch 'develop' into 0valt/1396/deleted-users
2 parents 386a5b3 + f86de01 commit 1916514

2 files changed

Lines changed: 25 additions & 18 deletions

File tree

app/assets/stylesheets/application.scss

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -88,24 +88,6 @@ a.header--site-name {
8888
}
8989
}
9090

91-
/* Copied from Co-Design for compatibility purposes */
92-
ul.pagination li.active {
93-
border-color:#293338;
94-
background-color:#3f4e56;
95-
box-shadow:2px 3px 2px -2px #344147;
96-
color:#fff;
97-
font-weight:600
98-
}
99-
100-
ul.pagination li.active a:hover {
101-
background-color:transparent
102-
}
103-
104-
ul.pagination li.disabled {
105-
box-shadow:none
106-
}
107-
/* *** */
108-
10991
.notice__dev-mode {
11092
font-size: 14px;
11193
}
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
@import 'variables';
2+
3+
ul {
4+
&.pagination {
5+
li {
6+
&.active {
7+
border-color: #293338;
8+
background-color: #3f4e56;
9+
box-shadow: 2px 3px 2px -2px #344147;
10+
color: #fff;
11+
font-weight: 600;
12+
13+
a:hover {
14+
background-color: transparent;
15+
}
16+
}
17+
18+
&.disabled {
19+
box-shadow: none;
20+
filter: grayscale(1) opacity(0.7);
21+
cursor: not-allowed;
22+
}
23+
}
24+
}
25+
}

0 commit comments

Comments
 (0)