Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SRCT
masonstrap
Commits
c4c22f00
Commit
c4c22f00
authored
Jun 04, 2013
by
Thomas Park
Browse files
flatly: fixes #107, input-addon
parent
15734466
Changes
3
Hide whitespace changes
Inline
Side-by-side
flatly/bootstrap.css
View file @
c4c22f00
...
...
@@ -6248,6 +6248,11 @@ p {
box-shadow
:
none
;
}
.navbar
.btn
,
.navbar
.btn-group
{
margin-top
:
6px
;
}
.navbar-inverse
.brand
:hover
{
color
:
#2c3e50
;
}
...
...
@@ -6365,7 +6370,7 @@ div.subnav .nav > .active > a:hover {
}
.btn
{
padding
:
8
px
20px
;
padding
:
9
px
20px
;
color
:
#ffffff
;
text-decoration
:
none
;
text-shadow
:
none
;
...
...
@@ -6518,6 +6523,73 @@ input[type="color"]:focus,
box-shadow
:
none
;
}
.input-prepend
.add-on
:first-child
,
.input-prepend
.btn
:first-child
{
-webkit-border-radius
:
6px
0
0
6px
;
-moz-border-radius
:
6px
0
0
6px
;
border-radius
:
6px
0
0
6px
;
}
.input-append
input
,
.input-append
select
,
.input-append
.uneditable-input
{
-webkit-border-radius
:
6px
0
0
6px
;
-moz-border-radius
:
6px
0
0
6px
;
border-radius
:
6px
0
0
6px
;
}
.input-append
input
+
.btn-group
.btn
:last-child
,
.input-append
select
+
.btn-group
.btn
:last-child
,
.input-append
.uneditable-input
+
.btn-group
.btn
:last-child
{
-webkit-border-radius
:
0
6px
6px
0
;
-moz-border-radius
:
0
6px
6px
0
;
border-radius
:
0
6px
6px
0
;
}
.input-append
.add-on
:last-child
,
.input-append
.btn
:last-child
,
.input-append
.btn-group
:last-child
>
.dropdown-toggle
{
-webkit-border-radius
:
0
6px
6px
0
;
-moz-border-radius
:
0
6px
6px
0
;
border-radius
:
0
6px
6px
0
;
}
.input-prepend.input-append
input
,
.input-prepend.input-append
select
,
.input-prepend.input-append
.uneditable-input
{
-webkit-border-radius
:
0
;
-moz-border-radius
:
0
;
border-radius
:
0
;
}
.input-prepend.input-append
input
+
.btn-group
.btn
,
.input-prepend.input-append
select
+
.btn-group
.btn
,
.input-prepend.input-append
.uneditable-input
+
.btn-group
.btn
{
-webkit-border-radius
:
0
6px
6px
0
;
-moz-border-radius
:
0
6px
6px
0
;
border-radius
:
0
6px
6px
0
;
}
.input-prepend.input-append
.add-on
:first-child
,
.input-prepend.input-append
.btn
:first-child
{
-webkit-border-radius
:
6px
0
0
6px
;
-moz-border-radius
:
6px
0
0
6px
;
border-radius
:
6px
0
0
6px
;
}
.input-prepend.input-append
.add-on
:last-child
,
.input-prepend.input-append
.btn
:last-child
{
-webkit-border-radius
:
0
6px
6px
0
;
-moz-border-radius
:
0
6px
6px
0
;
border-radius
:
0
6px
6px
0
;
}
.input-append
.add-on
,
.input-prepend
.add-on
{
padding
:
9px
5px
;
text-shadow
:
none
;
}
.control-group.error
,
.control-group.error
input
:focus
,
.control-group.error
textarea
:focus
{
...
...
@@ -6710,7 +6782,7 @@ legend {
.modal-footer
{
background-color
:
#ecf0f1
;
border-top
:
2px
solid
rgba
(
0
,
0
,
0
,
0.2
)
;
border-top
:
none
;
-webkit-box-shadow
:
none
;
-moz-box-shadow
:
none
;
box-shadow
:
none
;
...
...
flatly/bootstrap.min.css
View file @
c4c22f00
This source diff could not be displayed because it is too large. You can
view the blob
instead.
flatly/bootswatch.less
View file @
c4c22f00
...
...
@@ -90,6 +90,10 @@ p {
.box-shadow(none);
}
.btn, .btn-group {
margin-top: 6px;
}
&-inverse {
.brand:hover {
...
...
@@ -223,7 +227,7 @@ div.subnav {
// --------------------------------------------------
.btn {
padding:
8
px 20px;
padding:
9
px 20px;
border: none;
background-image: none;
color: @white;
...
...
@@ -293,7 +297,7 @@ input[type="color"],
padding: 7px 6px;
border: 2px solid #dce4ec;
text-indent: 1px;
.border-radius(
6px
);
.border-radius(
@inputBorderRadius
);
.box-shadow(none);
.placeholder(#acb6c0);
...
...
@@ -302,7 +306,65 @@ input[type="color"],
.box-shadow(none);
}
}
.input-prepend {
.add-on:first-child,
.btn:first-child {
.border-radius(@inputBorderRadius 0 0 @inputBorderRadius);
}
}
.input-append {
input,
select,
.uneditable-input {
.border-radius(@inputBorderRadius 0 0 @inputBorderRadius);
+ .btn-group .btn:last-child {
.border-radius(0 @inputBorderRadius @inputBorderRadius 0);
}
}
.add-on:last-child,
.btn:last-child,
.btn-group:last-child > .dropdown-toggle {
.border-radius(0 @inputBorderRadius @inputBorderRadius 0);
}
}
.input-prepend.input-append {
input,
select,
.uneditable-input {
.border-radius(0);
+ .btn-group .btn {
.border-radius(0 @inputBorderRadius @inputBorderRadius 0);
}
}
.add-on:first-child,
.btn:first-child {
.border-radius(@inputBorderRadius 0 0 @inputBorderRadius);
}
.add-on:last-child,
.btn:last-child {
.border-radius(0 @inputBorderRadius @inputBorderRadius 0);
}
}
.input-append,
.input-prepend {
.add-on {
padding: 9px 5px;
text-shadow: none;
}
}
.control-group.error,
...
...
@@ -485,7 +547,7 @@ legend {
&-footer {
background-color: @grayLighter;
border-top:
2px solid @dropdownDividerTop
;
border-top:
none
;
.box-shadow(none);
}
}
...
...
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