Adwaita: don't set a border for drop targets

to avoid active drop targets to grow.
This commit is contained in:
Lapo Calamandrei 2016-02-14 14:44:57 +01:00
parent bf45d06a79
commit 1bfbd23a0c
3 changed files with 8 additions and 3 deletions

View File

@ -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

View File

@ -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; }

View File

@ -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; }