-
Notifications
You must be signed in to change notification settings - Fork 150
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Link to ImageLayers from Image mgmt pagina. #516
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
@import 'ctl_base_ui/colors'; | ||
@import 'ctl_base_ui/icons'; | ||
@import 'ctl_base_ui/mixins'; | ||
|
||
#images_flow { | ||
h1 { | ||
|
@@ -69,10 +70,24 @@ ul.images li { | |
border-bottom: $light_grey 1px solid; | ||
overflow: auto; | ||
padding-bottom: 22px; | ||
padding-top: 22px; | ||
|
||
.image-layers-link { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Selector should have depth of applicability no greater than 2, but was 3 |
||
background: image-url('icon_image_layers.svg') -10px -17px; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Rule sets should be ordered as follows: |
||
background-size: 40px 40px; | ||
float: left; | ||
width: 20px; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Properties should be ordered background, background-size, float, height, width |
||
height: 20px; | ||
@include hide-text; | ||
|
||
&:hover { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Selector should have depth of applicability no greater than 2, but was 3 |
||
background-position: -10px 3px; | ||
} | ||
} | ||
|
||
h3 { | ||
margin: 0; | ||
padding: 22px 0 0 0; | ||
margin: 0 0 0 25px; | ||
padding: 0; | ||
} | ||
|
||
h6 { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Prefer double-quoted strings