File size: 727 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
.phpmyadmin-card button {
&.is-primary svg {
fill: var(--color-text-inverted);
}
svg {
vertical-align: text-bottom;
margin-left: 10px;
}
&:disabled svg {
opacity: 0.4;
}
}
.phpmyadmin-card__wrapper {
width: 100%;
}
.phpmyadmin-card__restore-password {
margin-top: 16px;
color: var(--color-text-subtle);
font-size: $font-body-small;
button.is-compact.is-borderless {
text-decoration: underline;
color: var(--color-primary);
font-style: inherit;
font-weight: 400;
line-height: inherit;
padding: 0;
font-size: inherit;
}
}
.phpmyadmin-card__questions {
margin-bottom: 1.5em;
button {
justify-content: flex-start;
}
}
.phpmyadmin-card__db-warning {
color: var(--color-text-subtle);
}
|