@@ -485,16 +485,18 @@ body:not(.system-pf2e) .monks-journal-sheet .sheet-container .tag {
485
485
position : relative;
486
486
}
487
487
488
- .monks-journal-sheet .tab .notes textarea .trim-textarea {
489
- resize : none;
490
- width : calc (100% - 4px );
491
- height : calc (100% - 6px );
488
+ .monks-journal-sheet .tab .notes .notes-container {
489
+ overflow : auto;
492
490
border : var (--mej-sheet-input-border );
493
491
background : var (--mej-sheet-input-background );
494
492
color : var (--mej-sheet-input-color );
495
- margin-left : 2px ;
493
+ border-radius : 4px ;
494
+ margin-bottom : 3px ;
496
495
}
497
496
497
+ .monks-journal-sheet .tab .notes .notes-container .editor-content {
498
+ padding : 0px 6px ;
499
+ }
498
500
/* Editor */
499
501
.monks-journal-sheet .sheet .editor {
500
502
overflow : visible;
@@ -545,7 +547,7 @@ body:not(.system-pf2e) .monks-journal-sheet .sheet-container .tag {
545
547
546
548
.monks-journal-sheet .sheet .editor-content .polyglot-journal {
547
549
cursor : help;
548
- background-color : transparent ;
550
+ background-color : rgba ( var ( --polyglot-journal-color ) , 0.1 ) ;
549
551
}
550
552
551
553
.monks-journal-sheet .sheet .editor-content .polyglot-journal : hover {
@@ -2026,15 +2028,11 @@ body:not(.system-pf2e) .monks-journal-sheet .sheet-container .tag {
2026
2028
}
2027
2029
2028
2030
# objective-display .window-content > ul > li {
2029
- padding : 4px ;
2030
- }
2031
-
2032
- # objective-display .window-content > ul > li : not (: last-child ) {
2033
2031
border-bottom : 1px solid # fff ;
2032
+ cursor : pointer;
2034
2033
}
2035
-
2036
- # objective-display .window-content > ul > li : nth-child (even) {
2037
- background-color : rgba (255 , 255 , 255 , 0.1 );
2034
+ # objective-display .window-content > ul > li : first-child {
2035
+ border-top : 1px solid # fff ;
2038
2036
}
2039
2037
2040
2038
# objective-display ul ul li : before {
@@ -2062,26 +2060,80 @@ body:not(.system-pf2e) .monks-journal-sheet .sheet-container .tag {
2062
2060
}
2063
2061
2064
2062
# objective-display .objective-list > li [status ] .quest-name {
2065
- border-bottom : 2 px solid var (--mej-quest-status-default );
2063
+ background-color : rgba ( var (--mej-quest-status-default ) , 0.4 );
2066
2064
width : 100% ;
2067
- border-left : 2px solid var (--mej-quest-status-default );
2068
- padding-left : 4px ;
2065
+ border-left : 2px solid rgb (var (--mej-quest-status-default ));
2066
+ padding : 4px ;
2067
+ }
2068
+ # objective-display .objective-list > li [status ] ul {
2069
+ background-color : rgba (var (--mej-quest-status-default ), 0.2 );
2070
+ border-left : 2px solid rgb (var (--mej-quest-status-default ));
2071
+ margin : 0px ;
2072
+ padding : 4px 10px ;
2073
+ }
2074
+ # objective-display .objective-list > li [status ] ul li {
2075
+ padding-left : 5px ;
2076
+ }
2077
+ /*
2078
+ #objective-display .objective-list > li[status] .quest-name i {
2079
+ color: rgb(var(--mej-quest-status-default));
2069
2080
}
2081
+ */
2070
2082
2071
2083
# objective-display .objective-list > li [status = 'available' ] .quest-name {
2072
- border-color : var (--mej-quest-status-available );
2084
+ border-color : rgb (var (--mej-quest-status-available ));
2085
+ background-color : rgba (var (--mej-quest-status-available ), 0.4 );
2086
+ }
2087
+ /*
2088
+ #objective-display .objective-list > li[status='available'] .quest-name i {
2089
+ color: rgb(var(--mej-quest-status-available));
2090
+ }
2091
+ */
2092
+ # objective-display .objective-list > li [status = 'available' ] ul {
2093
+ background-color : rgba (var (--mej-quest-status-available ), 0.2 );
2094
+ border-color : rgb (var (--mej-quest-status-available ));
2073
2095
}
2074
2096
2075
2097
# objective-display .objective-list > li [status = 'inprogress' ] .quest-name {
2076
- border-color : var (--mej-quest-status-inprogress );
2098
+ border-color : rgb (var (--mej-quest-status-inprogress ));
2099
+ background-color : rgba (var (--mej-quest-status-inprogress ), 0.4 );
2100
+ }
2101
+ /*
2102
+ #objective-display .objective-list > li[status='inprogress'] .quest-name i {
2103
+ color: rgb(var(--mej-quest-status-inprogress));
2104
+ }
2105
+ */
2106
+ # objective-display .objective-list > li [status = 'inprogress' ] ul {
2107
+ background-color : rgba (var (--mej-quest-status-inprogress ), 0.2 );
2108
+ border-color : rgb (var (--mej-quest-status-inprogress ));
2077
2109
}
2078
2110
2079
2111
# objective-display .objective-list > li [status = 'completed' ] .quest-name {
2080
- border-color : var (--mej-quest-status-completed );
2112
+ border-color : rgb (var (--mej-quest-status-completed ));
2113
+ background-color : rgba (var (--mej-quest-status-completed ), 0.4 );
2114
+ }
2115
+ /*
2116
+ #objective-display .objective-list > li[status='completed'] .quest-name i {
2117
+ color: rgb(var(--mej-quest-status-completed));
2118
+ }
2119
+ */
2120
+ # objective-display .objective-list > li [status = 'completed' ] ul {
2121
+ background-color : rgba (var (--mej-quest-status-completed ), 0.2 );
2122
+ border-color : rgb (var (--mej-quest-status-completed ));
2081
2123
}
2082
2124
2083
2125
# objective-display .objective-list > li [status = 'failed' ] .quest-name {
2084
- border-color : var (--mej-quest-status-failed );
2126
+ border-color : rgb (var (--mej-quest-status-failed ));
2127
+ background-color : rgba (var (--mej-quest-status-failed ), 0.2 );
2128
+ }
2129
+ /*
2130
+ #objective-display .objective-list > li[status='failed'] .quest-name i {
2131
+ color: rgb(var(--mej-quest-status-failed));
2132
+ }
2133
+ */
2134
+ # objective-display .objective-list > li [status = 'failed' ] ul {
2135
+ background-color : rgba (var (--mej-quest-status-failed ), 0.1 );
2136
+ border-color : rgb (var (--mej-quest-status-failed ));
2085
2137
}
2086
2138
2087
2139
/*
0 commit comments