File tree Expand file tree Collapse file tree 4 files changed +58
-25
lines changed Expand file tree Collapse file tree 4 files changed +58
-25
lines changed Original file line number Diff line number Diff line change 1
1
/* reasonably sized hovers */
2
2
.popover .hover-popover {
3
3
width : 30rem !important ;
4
+ overflow : scroll;
4
5
}
5
6
.popover .hover-popover .markdown-embed {
6
7
height : fit-content;
Original file line number Diff line number Diff line change 6
6
push down: 40 + 20 - (20/2) = 50
7
7
*/
8
8
padding-bottom : 20vh !important ;
9
- transform : translateY (clamp (0px , calc (50vh - 50 % ), 40vh ));
9
+ transform : translateY (clamp (0px , calc (50vh - 45 % ), 40vh ));
10
10
}
Original file line number Diff line number Diff line change 15
15
opacity : 1 !important ;
16
16
}
17
17
18
- .view-header-icon {
19
- opacity : 0.25 ;
20
- transition : opacity 0.25s ease-in-out;
21
- }
22
- .focus-mode .view-header-icon {
23
- opacity : 0 ;
24
- }
25
- .view-header-icon : hover {
26
- color : var (--text-muted );
27
- opacity : 1 !important ;
28
- }
29
- .view-header-title-container {
30
- position : absolute;
31
- width : 100% ;
32
- }
33
- .view-header-title {
34
- font-size : 0.9rem ;
35
- opacity : 0.75 ;
36
- text-align : center;
37
- padding-left : 1.5rem !important ;
38
- padding-right : 1.5rem !important ;
39
- position : relative;
40
- }
41
-
42
18
.workspace-ribbon-collapse-btn {
43
19
padding : 20px 6px ;
44
20
}
Original file line number Diff line number Diff line change
1
+ .view-header-icon {
2
+ opacity : 0.25 ;
3
+ transition : opacity 0.25s ease-in-out;
4
+ }
5
+ .focus-mode .view-header-icon {
6
+ opacity : 0 ;
7
+ }
8
+ .view-header-icon : hover {
9
+ color : var (--text-muted );
10
+ opacity : 1 !important ;
11
+ }
12
+ .view-header-title-container {
13
+ position : absolute;
14
+ width : 100% ;
15
+ height : 100% ;
16
+ }
17
+ .view-header-title {
18
+ font-size : 0.9rem ;
19
+ opacity : 0.75 ;
20
+
21
+ display : flex;
22
+ height : 100% ;
23
+ position : relative;
24
+ align-items : center;
25
+ justify-content : center;
26
+
27
+ padding-left : 1.5rem !important ;
28
+ padding-right : 1.5rem !important ;
29
+ }
30
+ .is-mobile .view-header-title {
31
+ margin-left : auto;
32
+ margin-right : auto;
33
+ }
34
+
35
+ .view-header-title : before {
36
+ background : linear-gradient (-90deg , var (--background-transparent ) 0% , var (--background-primary ) 80% );
37
+ width : 30px ;
38
+ content : " " ;
39
+ height : 100% ;
40
+ display : inline-block;
41
+ vertical-align : bottom;
42
+ pointer-events : none;
43
+ position : absolute;
44
+ left : 0px ;
45
+ }
46
+ .view-header-title : after {
47
+ background : linear-gradient (90deg , var (--background-transparent ) 0% , var (--background-primary ) 80% );
48
+ width : 30px ;
49
+ content : " " ;
50
+ height : 100% ;
51
+ display : inline-block;
52
+ vertical-align : bottom;
53
+ pointer-events : none;
54
+ position : absolute;
55
+ right : 0px ;
56
+ }
You can’t perform that action at this time.
0 commit comments