Skip to content

Commit ad64f22

Browse files
authored
fix button border css
Firefox (128 esr on Linux) displayed a solid black border around all buttons inside the popup which makes it impossible to see which button was pressed. This change makes the outset/inset look work as it probably was intended.
1 parent e4d58d6 commit ad64f22

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/styles/screen.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@ div.notify {
7171
/* media manager popup toggle buttons */
7272

7373
#media__popup_content button.button {
74-
border: 1px outset;
74+
border-width: 1px;
75+
border-style: outset;
7576
}
7677

7778
#media__popup_content button.selected {

0 commit comments

Comments
 (0)