1
0
mirror of https://github.com/moodle/moodle.git synced 2025-05-06 16:26:08 +02:00

MDL-42091 atto - fixing on hover and active states of buttons

This commit is contained in:
Jason Fowler 2013-10-03 14:34:22 +08:00
parent 56cc9b387e
commit 8bcd5ddeab

@ -43,10 +43,18 @@ div.editor_atto_toolbar button + button {
div.editor_atto_toolbar button[disabled] {
opacity: .45;
background: none;
cursor: default;
}
div.editor_atto_toolbar button:active {
background: #B7D6FF;
.editor_atto_toolbar button:active {
background-image: radial-gradient(ellipse at center, #ffffff 40%,#dfdfdf 100%);
background-color: #dfdfdf;
}
.editor_atto_toolbar button:hover {
background-image: radial-gradient(ellipse at center, #ffffff 60%,#dfdfdf 100%);
background-color: #ebebeb;
}
div.editor_atto_toolbar button img {