Skip to content

Commit

Permalink
style links in table cells, closes thomaspark#214
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaspark committed Feb 17, 2014
1 parent eb75576 commit 3efae83
Show file tree
Hide file tree
Showing 21 changed files with 98 additions and 15 deletions.
4 changes: 4 additions & 0 deletions amelia/bootstrap.css
Original file line number Diff line number Diff line change
Expand Up @@ -5734,6 +5734,10 @@ button.close {
.table-responsive > .table {
background-color: transparent;
}
.table a {
color: #fff;
text-decoration: underline;
}
.has-warning .help-block,
.has-warning .control-label {
color: #ecd77f;
Expand Down
2 changes: 1 addition & 1 deletion amelia/bootstrap.min.css

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions amelia/bootswatch.less
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,11 @@
background-color: @table-bg;
}

.table a {
color: #fff;
text-decoration: underline;
}

// Forms ======================================================================

.has-warning {
Expand Down
9 changes: 9 additions & 0 deletions cosmo/bootstrap.css
Original file line number Diff line number Diff line change
Expand Up @@ -5722,12 +5722,21 @@ button.close {
.text-info:hover {
color: #9954bb;
}
.table a {
text-decoration: underline;
}
.table tr.success,
.table tr.warning,
.table tr.danger,
.table tr.info {
color: #fff;
}
.table tr.success a,
.table tr.warning a,
.table tr.danger a,
.table tr.info a {
color: #fff;
}
.has-warning .help-block,
.has-warning .control-label {
color: #ff7518;
Expand Down
2 changes: 1 addition & 1 deletion cosmo/bootstrap.min.css

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions cosmo/bootswatch.less
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,19 @@

.table {

a {
text-decoration: underline;
}

tr.success,
tr.warning,
tr.danger,
tr.info {
color: #fff;

a {
color: #fff;
}
}
}

Expand Down
9 changes: 5 additions & 4 deletions cyborg/bootstrap.css
Original file line number Diff line number Diff line change
Expand Up @@ -5722,11 +5722,12 @@ button.close {
.text-info:hover {
color: #9933cc;
}
.table tr.success,
.table tr.warning,
.table tr.danger,
.table tr.info {
.table {
color: #fff;
}
.table a {
color: #fff;
text-decoration: underline;
}
.table-responsive > .table {
background-color: #181818;
Expand Down
2 changes: 1 addition & 1 deletion cyborg/bootstrap.min.css

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions cyborg/bootswatch.less
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@

.table {

tr.success,
tr.warning,
tr.danger,
tr.info {
color: #fff;

a {
color: #fff;
text-decoration: underline;
}
}

Expand Down
9 changes: 9 additions & 0 deletions flatly/bootstrap.css
Original file line number Diff line number Diff line change
Expand Up @@ -5727,12 +5727,21 @@ button.close {
.text-info:hover {
color: #3498db;
}
.table a {
text-decoration: underline;
}
.table tr.success,
.table tr.warning,
.table tr.danger,
.table tr.info {
color: #fff;
}
.table tr.success a,
.table tr.warning a,
.table tr.danger a,
.table tr.info a {
color: #fff;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
Expand Down
2 changes: 1 addition & 1 deletion flatly/bootstrap.min.css

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions flatly/bootswatch.less
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,19 @@

.table {

a {
text-decoration: underline;
}

tr.success,
tr.warning,
tr.danger,
tr.info {
color: #fff;

a {
color: #fff;
}
}

> thead > tr > th,
Expand Down
14 changes: 14 additions & 0 deletions lumen/bootstrap.css
Original file line number Diff line number Diff line change
Expand Up @@ -5778,6 +5778,10 @@ button.close {
.text-info:hover {
color: #75caeb;
}
table a,
.table a {
text-decoration: underline;
}
table tr.success,
.table tr.success,
table tr.warning,
Expand All @@ -5788,6 +5792,16 @@ table tr.info,
.table tr.info {
color: #fff;
}
table tr.success a,
.table tr.success a,
table tr.warning a,
.table tr.warning a,
table tr.danger a,
.table tr.danger a,
table tr.info a,
.table tr.info a {
color: #fff;
}
table > thead > tr > th,
.table > thead > tr > th,
table > tbody > tr > th,
Expand Down
2 changes: 1 addition & 1 deletion lumen/bootstrap.min.css

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions lumen/bootswatch.less
Original file line number Diff line number Diff line change
Expand Up @@ -112,11 +112,19 @@
table,
.table {

a {
text-decoration: underline;
}

tr.success,
tr.warning,
tr.danger,
tr.info {
color: #fff;

a {
color: #fff;
}
}

> thead > tr > th,
Expand Down
3 changes: 3 additions & 0 deletions slate/bootstrap.css
Original file line number Diff line number Diff line change
Expand Up @@ -5857,6 +5857,9 @@ h6 {
.text-info:hover {
color: #5bc0de;
}
.table a {
text-decoration: underline;
}
.table tr.success,
.table tr.warning,
.table tr.danger,
Expand Down
2 changes: 1 addition & 1 deletion slate/bootstrap.min.css

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions slate/bootswatch.less
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,10 @@ h1, h2, h3, h4, h5, h6 {

.table {

a {
text-decoration: underline;
}

tr.success,
tr.warning,
tr.danger,
Expand Down
5 changes: 5 additions & 0 deletions superhero/bootstrap.css
Original file line number Diff line number Diff line change
Expand Up @@ -5755,6 +5755,11 @@ table,
.table {
font-size: 12px;
}
table a,
.table a {
color: #fff;
text-decoration: underline;
}
table > thead > tr > th,
.table > thead > tr > th,
table > tbody > tr > th,
Expand Down
2 changes: 1 addition & 1 deletion superhero/bootstrap.min.css

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions superhero/bootswatch.less
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,11 @@ table,
.table {
font-size: 12px;

a {
color: #fff;
text-decoration: underline;
}

> thead > tr > th,
> tbody > tr > th,
> tfoot > tr > th,
Expand Down

0 comments on commit 3efae83

Please sign in to comment.