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
2af9cf10
Commit
2af9cf10
authored
Aug 06, 2013
by
Mark Otto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
more twerks to the theme
parent
402dbfb6
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
2 deletions
+20
-2
dist/css/bootstrap.css
dist/css/bootstrap.css
+10
-0
dist/css/bootstrap.min.css
dist/css/bootstrap.min.css
+1
-1
less/theme.less
less/theme.less
+9
-1
No files found.
dist/css/bootstrap.css
View file @
2af9cf10
...
...
@@ -4875,12 +4875,14 @@ td.visible-print {
.btn-default
{
text-shadow
:
0
-1px
0
rgba
(
0
,
0
,
0
,
0.2
);
text-shadow
:
0
1px
0
#fff
;
background-image
:
-webkit-gradient
(
linear
,
left
0%
,
left
100%
,
from
(
#ffffff
),
to
(
#e6e6e6
));
background-image
:
-webkit-linear-gradient
(
top
,
#ffffff
,
0%
,
#e6e6e6
,
100%
);
background-image
:
-moz-linear-gradient
(
top
,
#ffffff
0%
,
#e6e6e6
100%
);
background-image
:
linear-gradient
(
to
bottom
,
#ffffff
0%
,
#e6e6e6
100%
);
background-repeat
:
repeat-x
;
border-color
:
#e0e0e0
;
border-color
:
#ccc
;
filter
:
progid
:
DXImageTransform
.
Microsoft
.
gradient
(
startColorstr
=
'#ffffffff'
,
endColorstr
=
'#ffe6e6e6'
,
GradientType
=
0
);
-webkit-box-shadow
:
inset
0
1px
0
rgba
(
255
,
255
,
255
,
0.15
),
0
1px
1px
rgba
(
0
,
0
,
0
,
0.075
);
box-shadow
:
inset
0
1px
0
rgba
(
255
,
255
,
255
,
0.15
),
0
1px
1px
rgba
(
0
,
0
,
0
,
0.075
);
...
...
@@ -5008,6 +5010,10 @@ td.visible-print {
filter
:
progid
:
DXImageTransform
.
Microsoft
.
gradient
(
startColorstr
=
'#ffffffff'
,
endColorstr
=
'#ffeeeeee'
,
GradientType
=
0
);
}
.navbar
.navbar-nav
>
.active
>
a
{
background-color
:
#eeeeee
;
}
.navbar-inverse
{
background-image
:
-webkit-gradient
(
linear
,
left
0%
,
left
100%
,
from
(
#3c3c3c
),
to
(
#222222
));
background-image
:
-webkit-linear-gradient
(
top
,
#3c3c3c
,
0%
,
#222222
,
100%
);
...
...
@@ -5015,4 +5021,8 @@ td.visible-print {
background-image
:
linear-gradient
(
to
bottom
,
#3c3c3c
0%
,
#222222
100%
);
background-repeat
:
repeat-x
;
filter
:
progid
:
DXImageTransform
.
Microsoft
.
gradient
(
startColorstr
=
'#ff3c3c3c'
,
endColorstr
=
'#ff222222'
,
GradientType
=
0
);
}
.navbar-inverse
.navbar-nav
>
.active
>
a
{
background-color
:
#222222
;
}
\ No newline at end of file
dist/css/bootstrap.min.css
View file @
2af9cf10
This source diff could not be displayed because it is too large. You can
view the blob
instead.
less/theme.less
View file @
2af9cf10
...
...
@@ -30,7 +30,7 @@
}
// Apply the mixin to the buttons
.btn-default { .btn-styles(@btn-default-bg); }
.btn-default { .btn-styles(@btn-default-bg);
text-shadow: 0 1px 0 #fff; border-color: #ccc;
}
.btn-primary { .btn-styles(@btn-primary-bg); }
.btn-success { .btn-styles(@btn-success-bg); }
.btn-warning { .btn-styles(@btn-warning-bg); }
...
...
@@ -47,9 +47,17 @@
// Basic navbar
.navbar {
#gradient > .vertical(@start-color: lighten(@navbar-bg, 10%); @end-color: @navbar-bg;);
.navbar-nav > .active > a {
background-color: @navbar-bg;
}
}
// Inverted navbar
.navbar-inverse {
#gradient > .vertical(@start-color: lighten(@navbar-inverse-bg, 10%); @end-color: @navbar-inverse-bg;);
.navbar-nav > .active > a {
background-color: @navbar-inverse-bg;
}
}
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