Skip to content

Commit

Permalink
Added feature zurb#99 on CSS and SCSS files
Browse files Browse the repository at this point in the history
  • Loading branch information
jtsimoes committed Nov 27, 2018
1 parent a7b4057 commit d020674
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
5 changes: 4 additions & 1 deletion css/twentytwenty-no-compass.css
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,10 @@
border-radius: 1000px;
box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
z-index: 40;
cursor: pointer; }
cursor: grab; }

.twentytwenty-handle:active {
cursor: grabbing; }

.twentytwenty-horizontal .twentytwenty-handle:before {
bottom: 50%;
Expand Down
5 changes: 4 additions & 1 deletion css/twentytwenty.css
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,10 @@
-moz-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
z-index: 40;
cursor: pointer; }
cursor: grab; }

.twentytwenty-handle:active {
cursor: grabbing; }

.twentytwenty-horizontal .twentytwenty-handle:before {
bottom: 50%;
Expand Down
4 changes: 3 additions & 1 deletion scss/twentytwenty-no-compass.scss
Original file line number Diff line number Diff line change
Expand Up @@ -226,9 +226,11 @@ $twenty20-label-radius: 2px !default;
border-radius: $twenty20-handle-radius;
box-shadow: $twenty20-handle-box-shadow;
z-index: 40;
cursor: pointer;
cursor: grab;
}

.#{$pluginPrefix}-handle:active { cursor: grabing; }

// 20/20 Horizontal Handle Styles
.#{$pluginPrefix}-horizontal .#{$pluginPrefix}-handle {

Expand Down
4 changes: 3 additions & 1 deletion scss/twentytwenty.scss
Original file line number Diff line number Diff line change
Expand Up @@ -227,9 +227,11 @@ $twenty20-label-radius: 2px !default;
@include border-radius($twenty20-handle-radius);
@include box-shadow($twenty20-handle-box-shadow);
z-index: 40;
cursor: pointer;
cursor: grab;
}

.#{$pluginPrefix}-handle:active { cursor: grabing; }

// 20/20 Horizontal Handle Styles
.#{$pluginPrefix}-horizontal .#{$pluginPrefix}-handle {

Expand Down

0 comments on commit d020674

Please sign in to comment.