File tree 5 files changed +18
-13
lines changed
resources/day8/re_frame_10x
5 files changed +18
-13
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
All notable changes to this project will be documented in this file. This change log follows the conventions of [ keepachangelog.com] ( http://keepachangelog.com/ ) .
3
3
4
+ ## 1.9.6 (2024-02-02)
5
+
6
+ #### Fixed
7
+
8
+ - Elements using the new stylesheet are properly themed again.
9
+
4
10
## 1.9.5 (2024-02-02)
5
11
6
12
#### Fixed
Original file line number Diff line number Diff line change 1
1
/* day8/re-frame-10x */
2
2
/* https://www.nordtheme.com/docs/colors-and-palettes */
3
3
4
- : root {--nord0 : # 2E3440 ;
4
+ : host {- - nord0: # 2E3440;
5
5
- - nord1: # 3B4252;
6
6
- - nord2: # 434C5E;
7
7
- - nord3: # 4C566A;
17
17
- - nord13: # EBCB8B;
18
18
- - nord14: # A3BE8C;
19
19
- - nord15: # B48EAD;
20
- --nord-ghost-white # f8f9fb ;
21
- - - bor der-1: 1px solid var(- - nord4);
22
- - - color -1 var(- - nord3);
23
- - - background- color -1 var(- - nord- ghost - white);}
20
+ - - nord- ghost - white: # f8f9fb;
21
+ - - color -1: var(--nord3 );
22
+ - - background- color -1: var(- - nord- ghost - white);}
24
23
25
24
.flex-style {display : flex;}
26
25
41
40
color : var (--color-1 );}
42
41
43
42
.summary {padding : 0 19px ;
44
- border : var (--border-1 );
43
+ border : 1 px solid var (--nord4 );
45
44
border-radius : 2px ;}
46
45
47
46
.search {border-bottom : var (--border-2 );}
52
51
53
52
.icon {cursor : default;
54
53
border-radius : 3px ;
55
- background-color : var (--nord2 );
56
- border : 1px solid var (--nord1 );
54
+ background-color : var (--nord5 );
55
+ border : 1px solid var (--nord4 );
57
56
padding : 2px ;
58
57
font-weight : 400 ;}
59
58
60
59
.icon .disabled {cursor : pointer;
61
- background-color : var (--nord5 );
62
- border : 1px solid var (--nord4 );}
60
+ background-color : var (--nord2 );
61
+ border : 1px solid var (--nord1 );}
63
62
64
63
.icon svg path {fill : var (--nord0 );}
65
64
Original file line number Diff line number Diff line change 392
392
; ; When programming here, we need to be careful about which document and window
393
393
; ; we are operating on, and keep in mind that the window can close without going
394
394
; ; through standard react lifecycle, so we hook the beforeunload event.
395
- (let [shadow-root (tools.shadow-dom/shadow-root popup-document " --re-frame-10x--" (inline-resource " day8/re_frame_10x.css" ))
395
+ (let [shadow-root (tools.shadow-dom/shadow-root popup-document " --re-frame-10x--" (inline-resource " day8/re_frame_10x/style .css" ))
396
396
spade-container (spade.dom/create-container shadow-root)
397
397
resize-update-scheduled? (atom false )
398
398
handle-window-resize (fn [_]
Original file line number Diff line number Diff line change 26
26
27
27
(rf/clear-subscription-cache! )
28
28
29
- (def shadow-root (re-frame-10x/create-shadow-root (inline-resource " day8/re_frame_10x.css" )))
29
+ (def shadow-root (re-frame-10x/create-shadow-root (inline-resource " day8/re_frame_10x/style .css" )))
30
30
31
31
(rdom/render (re-frame-10x/create-style-container shadow-root)
32
32
shadow-root)
Original file line number Diff line number Diff line change 20
20
21
21
(rf/clear-subscription-cache! )
22
22
23
- (def shadow-root (re-frame-10x/create-shadow-root (inline-resource " day8/re_frame_10x.css" )))
23
+ (def shadow-root (re-frame-10x/create-shadow-root (inline-resource " day8/re_frame_10x/style .css" )))
24
24
25
25
(rdc/render (rdc/create-root shadow-root)
26
26
(re-frame-10x/create-style-container shadow-root))
You can’t perform that action at this time.
0 commit comments