File tree Expand file tree Collapse file tree 3 files changed +21
-9
lines changed
Expand file tree Collapse file tree 3 files changed +21
-9
lines changed Original file line number Diff line number Diff line change 267267color : rgb (var (--black ));
268268}
269269
270- .bookmarks-url-light .link-url-text {
270+ .is- bookmarks-url-light .link-url-text {
271271color : rgb (var (--white ));
272272}
273273
277277white-space : nowrap;
278278overflow : hidden;
279279text-overflow : ellipsis;
280- transition : all var (--animation-speed-fast ) ease-in-out;
280+ transition : color var (--animation-speed-fast ) ease-in-out;
281281}
282282
283283.link-display-icon {
284284color : rgb (var (--accent ));
285- transition : all var (--animation-speed-fast ) ease-in-out;
285+ transition : color var (--animation-speed-fast ) ease-in-out;
286286}
287287
288- .is-bookmarks-style-block .link-display-letter {
288+ .link-display-letter ,
289+ .link-display-icon {
289290margin : 0 ;
291+ }
292+
293+ .is-bookmarks-style-block .link-display-letter {
290294font-size : 2em ;
291295text-align : center;
292296max-width : 100% ;
293297}
294298
295299.is-bookmarks-style-block .link-display-icon {
296- margin-bottom : 0.25em ;
297300font-size : 2.5em ;
298301text-align : center;
299302max-width : 100% ;
300303}
301304
302305.is-bookmarks-style-list .link-display-letter ,
303306.is-bookmarks-style-list .link-display-icon {
304- margin : 0 0.5em 0 0 ;
305307font-size : 1.5em ;
306308flex-shrink : 0 ;
307309max-width : 50% ;
308310}
309311
312+ .is-bookmarks-show-name .is-bookmarks-style-block .link-display-letter ,
313+ .is-bookmarks-show-name .is-bookmarks-style-block .link-display-icon {
314+ margin-bottom : 0.25em ;
315+ }
316+
317+ .is-bookmarks-show-name .is-bookmarks-style-list .link-display-letter ,
318+ .is-bookmarks-show-name .is-bookmarks-style-list .link-display-icon {
319+ margin-right : 0.5em
320+ }
321+
310322.link-item : hover .link-display-letter ,
311323.link-item : focus .link-display-letter ,
312324.link-item : hover .link-display-icon ,
Original file line number Diff line number Diff line change @@ -1855,11 +1855,11 @@ var control = (function(){
18551855var urlText = {
18561856dark : function ( ) {
18571857helper . addClass ( html , "is-bookmarks-url-dark" ) ;
1858- helper . removeClass ( html , "bookmarks-url-light" ) ;
1858+ helper . removeClass ( html , "is- bookmarks-url-light" ) ;
18591859} ,
18601860light : function ( ) {
18611861helper . removeClass ( html , "is-bookmarks-url-dark" ) ;
1862- helper . addClass ( html , "bookmarks-url-light" ) ;
1862+ helper . addClass ( html , "is- bookmarks-url-light" ) ;
18631863}
18641864} ;
18651865urlText [ state . get ( ) . link . url . style ] ( ) ;
Original file line number Diff line number Diff line change 11var version = ( function ( ) {
22
33// version is normally bumped when the state needs changing or any new functionality is added
4- var current = "3.1.7 " ;
4+ var current = "3.1.8 " ;
55
66var compare = function ( a , b ) {
77var pa = a . split ( "." ) ;
You can’t perform that action at this time.
0 commit comments