Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bootstrap
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
bootstrap
Commits
65ee36a7
Commit
65ee36a7
authored
Jul 19, 2013
by
syed
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improved and followed pattern suggestions
parent
5e898fa2
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
14 deletions
+11
-14
less/accordion.less
less/accordion.less
+2
-2
less/badges.less
less/badges.less
+1
-1
less/breadcrumbs.less
less/breadcrumbs.less
+2
-2
less/variables.less
less/variables.less
+6
-9
No files found.
less/accordion.less
View file @
65ee36a7
...
@@ -11,7 +11,7 @@
...
@@ -11,7 +11,7 @@
// Group == heading + body
// Group == heading + body
.accordion-group {
.accordion-group {
margin-bottom: 2px;
margin-bottom: 2px;
border: 1px solid @accordion-
group-
border-color;
border: 1px solid @accordion-border-color;
border-radius: @border-radius-base;
border-radius: @border-radius-base;
}
}
.accordion-heading {
.accordion-heading {
...
@@ -27,5 +27,5 @@
...
@@ -27,5 +27,5 @@
// Inner needs the styles because you can't animate properly with any styles on the element
// Inner needs the styles because you can't animate properly with any styles on the element
.accordion-inner {
.accordion-inner {
padding: 9px 15px;
padding: 9px 15px;
border-top: 1px solid @accordion-
group-
border-color;
border-top: 1px solid @accordion-border-color;
}
}
less/badges.less
View file @
65ee36a7
...
@@ -44,7 +44,7 @@ a.badge {
...
@@ -44,7 +44,7 @@ a.badge {
a.list-group-item.active > .badge,
a.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
.nav-pills > .active > a > .badge {
color: @link-color;
color: @link-color;
background-color: @
active-badge-bg-color
;
background-color: @
badge-active-bg
;
}
}
.nav-pills > li > a > .badge {
.nav-pills > li > a > .badge {
margin-left: 3px;
margin-left: 3px;
...
...
less/breadcrumbs.less
View file @
65ee36a7
...
@@ -7,11 +7,11 @@
...
@@ -7,11 +7,11 @@
padding: 8px 15px;
padding: 8px 15px;
margin: 0 0 @line-height-computed;
margin: 0 0 @line-height-computed;
list-style: none;
list-style: none;
background-color: @breadcrumb-bg
-color
;
background-color: @breadcrumb-bg;
border-radius: @border-radius-base;
border-radius: @border-radius-base;
> li {
> li {
display: inline-block;
display: inline-block;
text-shadow:
0 1px 0 @breadcrumb-text-shadow-color
;
text-shadow:
@breadcrumb-text-shadow
;
&+li:before {
&+li:before {
display: inline-block;
display: inline-block;
content: "/\00a0"; // Unicode space added since inline-block means non-collapsing white-space
content: "/\00a0"; // Unicode space added since inline-block means non-collapsing white-space
...
...
less/variables.less
View file @
65ee36a7
...
@@ -10,18 +10,15 @@
...
@@ -10,18 +10,15 @@
// Inner Files color variables (can say inline colors)
// Inner Files color variables (can say inline colors)
// --------------------------------------------------
// --------------------------------------------------
@color-1: #e5e5e5; //Mercury, RGB: 229, 229, 229
@accordion-border-color: #e5e5e5;
@color-2: #fff; //white, RGB: 255, 255, 255
@color-3: #f5f5f5; //Wild Sand, RGB: 245, 245, 245
@accordion-group-border-color: @color-1;
@badge-color: #fff;
@badge-active-bg: #fff;
@badge-link-hover-color: #fff;
@active-badge-bg-color: @color-2;
@breadcrumb-bg: #f5f5f5;
@badge-link-hover-color: @color-2;
@breadcrumb-text-shadow: 0 1px 0 #fff;
@badge-color: @color-2;
@breadcrumb-text-shadow-color: @color-2;
@breadcrumb-bg-color: @color-3;
// Grays
// Grays
// -------------------------
// -------------------------
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment