File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 4
4
width : max-content; max-width : 40em ;
5
5
border : 1px solid black; padding : 0.2rem 0.4rem ; margin : 0 ;
6
6
background-color : white; color : black; text-decoration : none; font-size : 0.9rem ;
7
- position : fixed; box-shadow : 2px 2px 2px 0 rgba (128 , 128 , 128 , 0.6 );
7
+ position : fixed; /* box-shadow: 2px 2px 2px 0 rgba(128, 128, 128, 0.6); GPUメモリ削減のため無効化 */
8
+ border : 1px solid # ccc ; /* box-shadowの代替として境界線を強化 */
8
9
cursor : default;
9
10
opacity : 0 ; z-index : -1 ;
10
- transition : opacity .3s linear .5s , z-index 0s linear .8s ;
11
+ /* transition: opacity .3s linear .5s, z-index 0s linear .8s; GPUメモリ削減のため簡略化 */
12
+ transition : opacity .2s ease-out .3s ;
11
13
}
12
14
# kunai-ui-tooltip : before {
13
15
content : attr (data-desc);
14
16
}
15
17
# kunai-ui-tooltip .kunai-ui-tooltip-revealed {
16
18
opacity : 1 ; z-index : 1000000 ;
17
- transition : opacity .3s linear 0s , z-index 0s linear 0s ;
19
+ /* transition: opacity .3s linear 0s, z-index 0s linear 0s; GPUメモリ削減のため簡略化 */
20
+ transition : opacity .2s ease-out;
18
21
}
You can’t perform that action at this time.
0 commit comments