forked from AuroraMiddleware/gtk
Adwaita: don't set a border for drop targets
to avoid active drop targets to grow.
This commit is contained in:
parent
bf45d06a79
commit
1bfbd23a0c
@ -3757,7 +3757,10 @@ button.circular { // FIXME: aggregate to buttons
|
||||
}
|
||||
|
||||
*:drop(active):focus,
|
||||
*:drop(active) { border: 1px solid black; } // FIXME this makes boxes grow and looks pretty bad, needs to be handled differently
|
||||
*:drop(active) { // FIXME figure out a proper color
|
||||
border-color: black;
|
||||
box-shadow: inset 0 0 0 1px black;
|
||||
}
|
||||
|
||||
stackswitcher button.text-button { min-width: 100px; } // FIXME aggregate with buttons
|
||||
|
||||
|
@ -4459,7 +4459,8 @@ button.circular {
|
||||
|
||||
*:drop(active):focus,
|
||||
*:drop(active) {
|
||||
border: 1px solid black; }
|
||||
border-color: black;
|
||||
box-shadow: inset 0 0 0 1px black; }
|
||||
|
||||
stackswitcher button.text-button {
|
||||
min-width: 100px; }
|
||||
|
@ -4601,7 +4601,8 @@ button.circular {
|
||||
|
||||
*:drop(active):focus,
|
||||
*:drop(active) {
|
||||
border: 1px solid black; }
|
||||
border-color: black;
|
||||
box-shadow: inset 0 0 0 1px black; }
|
||||
|
||||
stackswitcher button.text-button {
|
||||
min-width: 100px; }
|
||||
|
Loading…
Reference in New Issue
Block a user