-
Notifications
You must be signed in to change notification settings - Fork 2k
/
Copy pathfs-explorer.scss
74 lines (62 loc) · 1.25 KB
/
fs-explorer.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
.fs-explorer {
width: 100%;
.table.boxed-section-body.is-full-bleed {
border: 1px solid $grey-blue;
}
tbody {
a {
text-decoration: none;
color: inherit;
&:hover {
.name {
text-decoration: underline;
}
}
}
}
.breadcrumb a,
tbody a {
position: relative;
// This is adapted from Bulma’s .button.is-loading::after
&.ember-transitioning-in::after {
animation: spinAround 500ms infinite linear;
border: 2px solid $grey-light;
border-radius: 290486px;
border-right-color: transparent;
border-top-color: transparent;
content: '';
display: block;
height: 1em;
width: 1em;
position: absolute;
right: -1.5em;
top: calc(50% - (1em / 2));
}
}
.breadcrumb {
margin: 0;
li::before {
color: $grey-light;
}
a {
padding-top: 0;
padding-bottom: 0;
color: $blue;
opacity: 1;
font-weight: $weight-bold;
text-decoration: none;
&:hover {
text-decoration: underline;
}
&.ember-transitioning-in {
margin-right: 1.5em;
&::after {
right: -1em;
}
}
}
.is-active a {
color: $black;
}
}
}