Browse Source

Fix typo

Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
tags/v13.0.0beta1
John Molakvoæ (skjnldsv) 6 years ago
parent
commit
adffaff081
No account linked to committer's email address
1 changed files with 18 additions and 9 deletions
  1. 18
    9
      core/css/apps.scss

+ 18
- 9
core/css/apps.scss View File

@@ -113,7 +113,7 @@ kbd {
}
}
&.open > ul {
max-height: 20000px;
max-height: 2000px;
}
/* Second level nesting for lists */
> ul {
@@ -198,6 +198,23 @@ kbd {
padding-bottom: 0;
}

/**
* Button styling for menu, edit and undo
*/
.app-navigation-entry-utils .app-navigation-entry-utils-menu-button > button,
.app-navigation-entry-deleted .app-navigation-entry-deleted-button {
border: 0;
opacity: 0.5;
background-color: transparent;
background-repeat: no-repeat;
background-position: center;
&:hover,
&:focus {
background-color: transparent;
opacity: 1;
}
}

/**
* Collapsible menus
*/
@@ -270,14 +287,6 @@ kbd {
}
.app-navigation-entry-utils-menu-button {
button {
border: 0;
opacity: .5;
background-color: transparent;
background-repeat: no-repeat;
background-position: center;
}
/* Only apply background-image if no icon is set on the button */
button:not([class^='icon-']):not([class*=' icon-']) {
background-image: url('../img/actions/more.svg?v=1');
}
&:hover button,

Loading…
Cancel
Save