Browse Source

Cleanup and using mixins again

pull/185/head
Zach Wise 12 years ago
parent
commit
2d3a231e22
  1. 5
      source/less/Typography.less
  2. 26
      source/less/VMM.Timeline.Core.less
  3. 22
      source/less/VMM.Timeline.TimeNav.less

5
source/less/Typography.less

@ -46,10 +46,7 @@
} }
} }
.hyphenate { .hyphenate {
-webkit-hyphens:auto; .hyphens(auto);
-moz-hyphens:auto;
-ms-hyphens:auto;
hyphens:auto;
word-wrap:break-word; word-wrap:break-word;
} }

26
source/less/VMM.Timeline.Core.less

@ -12,13 +12,9 @@
padding-top:20px; padding-top:20px;
padding-bottom:20px; padding-bottom:20px;
clear:both; clear:both;
-webkit-border-radius: 10px;
-moz-border-radius: 10px; .border-radius(10px);
border-radius: 10px; .box-shadow(1px 1px 3px rgba(0,0,0,.35));
-webkit-box-shadow: 1px 1px 3px rgba(0,0,0,.35);
-moz-box-shadow: 1px 1px 3px rgba(0,0,0,.35);
box-shadow: 1px 1px 3px rgba(0,0,0,.35);
} }
#timeline-embed.full-embed { #timeline-embed.full-embed {
overflow:hidden; overflow:hidden;
@ -26,12 +22,9 @@
padding: 0 !important; padding: 0 !important;
margin: 0 !important; margin: 0 !important;
clear:both; clear:both;
-webkit-border-radius: 0 !important;
-moz-border-radius: 0 !important; .border-radius(0) !important;
border-radius: 0 !important; .box-shadow(0 0px 0px rgba(0, 0, 0, 0.25)) !important;
-webkit-box-shadow:0 0px 0px rgba(0, 0, 0, 0.25) !important;
-moz-box-shadow:0 0px 0px rgba(0, 0, 0, 0.25) !important;
box-shadow:0px 0px 0px rgba(0, 0, 0, 0.25) !important;
} }
#timeline-embed.sized-embed { #timeline-embed.sized-embed {
overflow:hidden; overflow:hidden;
@ -40,10 +33,8 @@
padding-bottom:7px; padding-bottom:7px;
margin: 0 !important; margin: 0 !important;
clear:both; clear:both;
-webkit-box-shadow:0 0px 0px rgba(0, 0, 0, 0.25) !important;
-moz-box-shadow:0 0px 0px rgba(0, 0, 0, 0.25) !important;
box-shadow:0px 0px 0px rgba(0, 0, 0, 0.25) !important;
.box-shadow(0 0px 0px rgba(0, 0, 0, 0.25)) !important;
} }
/* TIMELINE /* TIMELINE
@ -51,13 +42,10 @@
.vmm-timeline { .vmm-timeline {
width: 100%; width: 100%;
height:100%; height:100%;
//border: 1px solid @color-line;
padding:0px; padding:0px;
margin:0px; margin:0px;
background-color:@color-background; background-color:@color-background;
position: absolute; position: absolute;
//border: 1px solid @color-line;
z-index:100; z-index:100;
clear:both; clear:both;
overflow:hidden; overflow:hidden;

22
source/less/VMM.Timeline.TimeNav.less

@ -46,9 +46,7 @@
color:@color-nav-date; color:@color-nav-date;
} }
.thumbnail { .thumbnail {
opacity: 1; .opacity(100);
-moz-opacity: 1;
filter:alpha(opacity=100);
} }
} }
} }
@ -249,9 +247,7 @@
margin-top:5px; margin-top:5px;
} }
.thumbnail { .thumbnail {
opacity: 1; .opacity(100);
-moz-opacity: 1;
filter:alpha(opacity=100);
} }
} }
} }
@ -301,14 +297,8 @@
height:150px; height:150px;
background-color: @color-line; background-color: @color-line;
background-color: fade(@color-line, 50%); background-color: fade(@color-line, 50%);
/*
-webkit-box-shadow: 1px 0 0 @color-base; .box-shadow(1px 0 0 fade(@color-base, 50%));
-moz-box-shadow: 1px 0 0 @color-base;
box-shadow: 1px 0 0 @color-base;
*/
-webkit-box-shadow: 1px 0 0 fade(@color-base, 50%);
-moz-box-shadow: 1px 0 0 fade(@color-base, 50%);
box-shadow: 1px 0 0 fade(@color-base, 50%);
z-index:22; z-index:22;
.event-line { .event-line {
@ -361,9 +351,7 @@
.thumbnail { .thumbnail {
margin-bottom: 15px; margin-bottom: 15px;
margin-right: 3px; margin-right: 3px;
opacity: 0.5; .opacity(50);
-moz-opacity: 0.5;
filter:alpha(opacity=50);
img { img {
width:@base-thumb - 2; width:@base-thumb - 2;
height:@base-thumb - 2; height:@base-thumb - 2;

Loading…
Cancel
Save