Browse Source

fix(filmstrip-only): first and last toolbar buttons get rounded edges

All toolbar buttons (which have the class .button) got wrapped
in additional elements due to atlaskit tooltips. This changed
parent/child relationships within the html hierarchy, and the
filmstrip only toolbar selectors needed updating.
j8
Leonard Kim 8 years ago
parent
commit
9233a1026a
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      css/_toolbars.scss

+ 2
- 2
css/_toolbars.scss View File

226
             width: 37px;
226
             width: 37px;
227
         }
227
         }
228
 
228
 
229
-        .button:first-child {
229
+        .toolbar-button-wrapper:first-child .button {
230
             border-top-left-radius: 3px;
230
             border-top-left-radius: 3px;
231
             border-top-right-radius: 3px;
231
             border-top-right-radius: 3px;
232
         }
232
         }
233
-        .button:last-child {
233
+        .toolbar-button-wrapper:last-child .button {
234
             border-bottom-right-radius: 3px;
234
             border-bottom-right-radius: 3px;
235
             border-bottom-left-radius: 3px;
235
             border-bottom-left-radius: 3px;
236
         }
236
         }

Loading…
Cancel
Save