Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Removed unnecessary #bundle style, improved readability
  • Loading branch information
Marius Schulz committed Feb 9, 2012
commit e6847126d836ef83734f112862891ecf09a64747
55 changes: 39 additions & 16 deletions less/metro.less
Original file line number Diff line number Diff line change
Expand Up @@ -2,32 +2,55 @@
@import "colours.less";
@import "fonts.less";

#bundle {
.pivot-header {
color: @inactive;
font-size: 20px;
text-decoration: none;
text-transform: lowercase;

&.active {
color: @foreground;
}
}
.metro-pivot .headers {
clear: both;
display: block;
white-space: nowrap;
}

.metro-pivot .pivot-item h3,
.metro-pivot .headers .header {
#headingstyles;

cursor: pointer;
display: inline-block;
font-size: @h2fontSize;
margin-right: 24px;
padding: 0;
vertical-align: top;
}

.metro-pivot .headers { white-space: nowrap; display: block; clear: both; }
.metro-pivot .pivot-item h3, .metro-pivot .headers .header { #headingstyles; font-size: @h2fontsize; display: inline-block; vertical-align: top; padding: 0; cursor: pointer; margin-right:24px; }
.metro-pivot .headers .header.current { }
.metro-pivot .items { position: relative; }
.metro-pivot .items .pivotItem { display: block; white-space: normal; text-align: justify; width: 100%; }

.metro-pivot .items .pivotItem {
display: block;
text-align: justify;
white-space: normal;
width: 100%;
}

ul.metro-list { padding: 0; }
ul.metro-list li { display: block; margin: 10px 0; height: 20px; padding: 5px; overflow: hidden; border-left: solid 30px; list-style: none; }

ul.metro-list li {
border-left: solid 30px;
display: block;
height: 20px;
list-style: none;
margin: 10px 0;
overflow: hidden;
padding: 5px;
}

pre {
padding: 15px;
border: 1px solid @inactive;
background: @faded;
}

code { padding-left:5px; padding-right: 5px; border: 1px solid @inactive; background: @faded; }
code {
background: @faded;
border: 1px solid @inactive;
padding-left: 5px;
padding-right: 5px;
}