1
0
Fork 0
mirror of synced 2024-09-30 09:07:25 +13:00

Fixing component button styles, making all component dropdown menus buttons have the correct styling across the board.

This commit is contained in:
mike12345567 2020-09-09 09:44:24 +01:00
parent 7d0d2d5453
commit 2b11a9df38
4 changed files with 17 additions and 3 deletions

View file

@ -195,6 +195,16 @@
cursor: pointer;
}
button {
border-style: none;
border-radius: 2px;
padding: 0;
background: transparent;
cursor: pointer;
color: var(--ink);
outline: none;
}
li:hover {
background-color: var(--grey-2);
}

View file

@ -110,7 +110,9 @@
.dropdown-menu {
display: none;
color: var(--ink);
padding: 0px 5px;
padding: 0 5px;
width: 24px;
height: 24px;
border-style: none;
background: rgba(0, 0, 0, 0);
cursor: pointer;

View file

@ -205,7 +205,9 @@
.actions {
display: none;
color: var(--ink);
padding: 0px 5px;
padding: 0 5px;
width: 24px;
height: 24px;
border-style: none;
background: rgba(0, 0, 0, 0);
cursor: pointer;

View file

@ -64,7 +64,7 @@
.root button {
border-style: none;
border-radius: 2px;
padding: 5px;
padding: 0;
background: transparent;
cursor: pointer;
color: var(--ink);