Skip to content

Commit

Permalink
cosmo, yeti: fixes thomaspark#196, negative border-radius
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaspark committed Jan 12, 2014
1 parent 36f59c9 commit 696e118
Show file tree
Hide file tree
Showing 7 changed files with 41 additions and 13 deletions.
20 changes: 13 additions & 7 deletions cosmo/bootstrap.css
Original file line number Diff line number Diff line change
Expand Up @@ -4353,7 +4353,7 @@ textarea.input-group-sm > .input-group-btn > .btn {
margin-right: 2px;
line-height: 1.428571429;
border: 1px solid transparent;
border-radius: 0 0px 0 0;
border-radius: 0 0 0 0;
}

.nav-tabs > li > a:hover {
Expand Down Expand Up @@ -4413,7 +4413,7 @@ textarea.input-group-sm > .input-group-btn > .btn {
@media (min-width: 768px) {
.nav-tabs.nav-justified > li > a {
border-bottom: 1px solid #dddddd;
border-radius: 0 0px 0 0;
border-radius: 0 0 0 0;
}
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
Expand Down Expand Up @@ -4496,7 +4496,7 @@ textarea.input-group-sm > .input-group-btn > .btn {
@media (min-width: 768px) {
.nav-tabs-justified > li > a {
border-bottom: 1px solid #dddddd;
border-radius: 0 0px 0 0;
border-radius: 0 0 0 0;
}
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
Expand Down Expand Up @@ -6068,8 +6068,8 @@ a.list-group-item.active:focus .list-group-item-text {
.panel-heading {
padding: 10px 15px;
border-bottom: 1px solid transparent;
border-top-right-radius: -1px;
border-top-left-radius: -1px;
border-top-right-radius: -1;
border-top-left-radius: -1;
}

.panel-heading > .dropdown .dropdown-toggle {
Expand All @@ -6091,8 +6091,8 @@ a.list-group-item.active:focus .list-group-item-text {
padding: 10px 15px;
background-color: #f5f5f5;
border-top: 1px solid #dddddd;
border-bottom-right-radius: -1px;
border-bottom-left-radius: -1px;
border-bottom-right-radius: -1;
border-bottom-left-radius: -1;
}

.panel-group .panel {
Expand Down Expand Up @@ -7609,6 +7609,12 @@ td.visible-print {
box-shadow: none;
}

.panel-heading,
.panel-footer {
border-top-right-radius: 0;
border-top-left-radius: 0;
}

.clearfix:before,
.clearfix:after {
display: table;
Expand Down
2 changes: 1 addition & 1 deletion cosmo/bootstrap.min.css

Large diffs are not rendered by default.

10 changes: 9 additions & 1 deletion cosmo/bootswatch.less
Original file line number Diff line number Diff line change
Expand Up @@ -140,4 +140,12 @@
.box-shadow(none);
}

// Containers =================================================================
// Containers =================================================================

.panel {
&-heading,
&-footer {
border-top-right-radius: 0;
border-top-left-radius: 0;
}
}
6 changes: 3 additions & 3 deletions cosmo/variables.less
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,9 @@
@line-height-large: 1.33;
@line-height-small: 1.5;

@border-radius-base: 0px;
@border-radius-large: 0px;
@border-radius-small: 0px;
@border-radius-base: 0;
@border-radius-large: 0;
@border-radius-small: 0;

@component-active-color: #fff;
@component-active-bg: @brand-primary;
Expand Down
6 changes: 6 additions & 0 deletions yeti/bootstrap.css
Original file line number Diff line number Diff line change
Expand Up @@ -7859,6 +7859,12 @@ label,
color: #fff;
}

.panel-heading,
.panel-footer {
border-top-right-radius: 0;
border-top-left-radius: 0;
}

.clearfix:before,
.clearfix:after {
display: table;
Expand Down
2 changes: 1 addition & 1 deletion yeti/bootstrap.min.css

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions yeti/bootswatch.less
Original file line number Diff line number Diff line change
Expand Up @@ -398,3 +398,11 @@ label,
font-size: 12px;
font-weight: 300;
}

.panel {
&-heading,
&-footer {
border-top-right-radius: 0;
border-top-left-radius: 0;
}
}

0 comments on commit 696e118

Please sign in to comment.