diff options
Diffstat (limited to 'readable')
-rw-r--r-- | readable/bootstrap.css | 24 | ||||
-rw-r--r-- | readable/bootstrap.min.css | 5 | ||||
-rwxr-xr-x | readable/bootswatch.less | 27 |
3 files changed, 56 insertions, 0 deletions
diff --git a/readable/bootstrap.css b/readable/bootstrap.css index 8db39bc1..377be348 100644 --- a/readable/bootstrap.css +++ b/readable/bootstrap.css @@ -4318,6 +4318,30 @@ input[type="file"] { -moz-border-radius: 0; border-radius: 0; } +.table-bordered thead:first-child tr:first-child th:first-child, +.table-bordered tbody:first-child tr:first-child td:first-child { + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.table-bordered thead:last-child tr:last-child th:first-child, +.table-bordered tbody:last-child tr:last-child td:first-child { + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.modal { + background-color: #ffffff; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.modal-header { + border-bottom: none; +} +.modal-footer { + background-color: #fdfdfa; +} .alert, .label, .label:hover { diff --git a/readable/bootstrap.min.css b/readable/bootstrap.min.css index 66875c16..8b4a4cbc 100644 --- a/readable/bootstrap.min.css +++ b/readable/bootstrap.min.css @@ -742,6 +742,11 @@ input,textarea,select{color:#090000;} select,input[type="file"]{height:auto;line-height:normal;} .form-actions{background-color:transparent;border-top:1px solid #D4D4D4;padding-top:2em;} .table-bordered{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.table-bordered thead:first-child tr:first-child th:first-child,.table-bordered tbody:first-child tr:first-child td:first-child{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.table-bordered thead:last-child tr:last-child th:first-child,.table-bordered tbody:last-child tr:last-child td:first-child{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.modal{background-color:#ffffff;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.modal-header{border-bottom:none;} +.modal-footer{background-color:#fdfdfa;} .alert,.label,.label:hover{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;border:1px solid #D4D4D4;color:#090000;text-shadow:none;} .alert-heading{color:#090000;text-shadow:none;} .label,.label:hover{background-color:#ffffff;font-weight:normal;font-size:19px;padding:4px;} diff --git a/readable/bootswatch.less b/readable/bootswatch.less index 56a734a2..ec07f1e1 100755 --- a/readable/bootswatch.less +++ b/readable/bootswatch.less @@ -359,6 +359,33 @@ select, input[type="file"] { .border-radius(0); } +.table-bordered thead:first-child tr:first-child th:first-child, +.table-bordered tbody:first-child tr:first-child td:first-child { + .border-radius(0); +} + +.table-bordered thead:last-child tr:last-child th:first-child, +.table-bordered tbody:last-child tr:last-child td:first-child { + .border-radius(0); +} + +// MODALS +// ----------------------------------------------------- + +.modal { + background-color: @white; + .border-radius(0); +} + +.modal-header { + border-bottom: none; +} + +.modal-footer { + background-color: @bodyBackground; +} + + // MISCELLANEOUS // ----------------------------------------------------- |