Browse Source
Merge pull request #8936 from nextcloud/fix-gallery-selectors
Fix gallery buttons selector
pull/8968/head
Morris Jobke
8 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
5 additions and
2 deletions
-
core/css/styles.scss
|
|
|
@ -254,14 +254,17 @@ body { |
|
|
|
box-sizing: border-box; |
|
|
|
} |
|
|
|
|
|
|
|
#controls { |
|
|
|
#controls .actions { |
|
|
|
> div, |
|
|
|
& { |
|
|
|
> .button, button { |
|
|
|
box-sizing: border-box; |
|
|
|
display: inline-block; |
|
|
|
display: flex; |
|
|
|
height: 36px; |
|
|
|
padding: 7px 10px; |
|
|
|
width: 36px; |
|
|
|
align-items: center; |
|
|
|
justify-content: center; |
|
|
|
} |
|
|
|
.button.hidden { |
|
|
|
display: none; |
|
|
|
|