Change border radius globally
This commit is contained in:
parent
f19090244e
commit
8e9d6e2414
|
@ -46,10 +46,13 @@
|
|||
#match,
|
||||
#entry,
|
||||
#plugin,
|
||||
#main { background: transparent; }
|
||||
#main {
|
||||
background: transparent;
|
||||
border: 1px solid transparent;
|
||||
}
|
||||
|
||||
#match.activatable {
|
||||
border-radius: 10px;
|
||||
border-radius: 5px;
|
||||
padding: .3rem .9rem;
|
||||
margin-top: .01rem;
|
||||
}
|
||||
|
@ -57,27 +60,26 @@
|
|||
#match.activatable:last-child { margin-bottom: .6rem; }
|
||||
|
||||
#plugin:hover #match.activatable {
|
||||
border-radius: 10px;
|
||||
border-radius: 5px;
|
||||
padding: .3rem;
|
||||
margin-top: .01rem;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
#match:selected, #match:hover, #plugin:hover {
|
||||
background: alpha(${base03}, .1);
|
||||
border: 1px solid ${base0A};
|
||||
}
|
||||
#match:hover, #plugin:hover { border: 1px solid ${base03}; }
|
||||
|
||||
#match:selected { border: 1px solid ${base0A}; }
|
||||
|
||||
#entry {
|
||||
background: alpha(${base01}, .05);
|
||||
border: 1px solid ${base03};
|
||||
border-radius: 10px;
|
||||
border-radius: 5px;
|
||||
margin: .3rem;
|
||||
padding: .3rem 1rem;
|
||||
}
|
||||
|
||||
list > #plugin {
|
||||
border-radius: 16px;
|
||||
border-radius: 5px;
|
||||
margin: 0 .3rem;
|
||||
}
|
||||
list > #plugin:first-child { margin-top: .3rem; }
|
||||
|
@ -86,8 +88,8 @@
|
|||
|
||||
box#main {
|
||||
background: alpha(${base00}, .5);
|
||||
box-shadow: inset 0 0 0 1px rgba(183, 189, 248, .1), 0 0 0 1px rgba(36, 39, 58, .5);
|
||||
border-radius: 10px;
|
||||
box-shadow: inset 0 0 0 1px alpha(${base05}, .1), 0 0 0 1px alpha(${base00}, .5);
|
||||
border-radius: 5px;
|
||||
padding: .3rem;
|
||||
}
|
||||
'';
|
||||
|
|
|
@ -61,7 +61,7 @@ in ''
|
|||
}
|
||||
|
||||
decoration {
|
||||
rounding = 10
|
||||
rounding = 5
|
||||
drop_shadow = yes
|
||||
shadow_ignore_window = true
|
||||
shadow_range = 4
|
||||
|
|
|
@ -12,6 +12,6 @@
|
|||
margin = "20";
|
||||
padding = "10";
|
||||
sort = "-time";
|
||||
borderRadius = 10;
|
||||
borderRadius = 5;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -11,7 +11,7 @@ window > box {
|
|||
margin: 5px 5px 0px;
|
||||
padding: 0px;
|
||||
border: 1px solid @base03;
|
||||
border-radius: 10px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
tooltip {
|
||||
|
@ -19,7 +19,7 @@ tooltip {
|
|||
background: alpha(@base00, 0.5);
|
||||
box-shadow: inset 0 0 0 1px alpha(@base0A, 0.1), 0 0 0 1px alpha(@base00, 0.5);
|
||||
border: 1px solid @base0A;
|
||||
border-radius: 10px;
|
||||
border-radius: 5px;
|
||||
padding: 5px;
|
||||
margin: 0px;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue