Skip to content

Commit

Permalink
fix(doc): nav tabs
Browse files Browse the repository at this point in the history
removed example bottom margin
  • Loading branch information
ygatesoupe committed Oct 6, 2016
1 parent 8c022e1 commit 6d2caed
Showing 1 changed file with 51 additions and 49 deletions.
100 changes: 51 additions & 49 deletions docs-orange/assets/scss/_boosted-docs.scss
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,10 @@

}

.bd-example-tabs .nav-tabs {
margin-bottom: 0;
}

@mixin brand-warning {
&::before {
@include sr-only;
Expand Down Expand Up @@ -213,58 +217,56 @@
}
}

@media only screen and (max-width : 650px) {

#myTable .cf:after { visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; }
#myTable * html .cf { zoom: 1; }
#myTable *:first-child+html .cf { zoom: 1; }
#myTable table { width: 100%; border-collapse: collapse; border-spacing: 0; }
#myTable th,
#myTable td { margin: 0; vertical-align: top; }
#myTable th { text-align: left; }
#myTable table { display: block; position: relative; width: 100%; }
#myTable thead { display: block; float: left; }
#myTable tbody { display: block; width: auto; position: relative; overflow-x: auto; white-space: nowrap; }
#myTable thead tr { display: block; }
#myTable th { display: block; text-align: right; }
#myTable tbody tr { display: inline-block; vertical-align: top; }
#myTable td { display: block; min-height: 1.25em; text-align: left; }

/* sort out borders */
#myTable th { border-bottom: 0; border-left: 0; border-top: 1px solid #A6A6A6; }
#myTable td { border-right: 1px solid #A6A6A6; border-right: 1px solid #A6A6A6; border-bottom: 0; }
#myTable th:last-child,
#myTable td:last-child { border-bottom: 1px solid #babcbf; }

}

@media only screen and (max-width : 650px) {

#myTable .cf:after { visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; }
#myTable * html .cf { zoom: 1; }
#myTable *:first-child+html .cf { zoom: 1; }
#myTable table { width: 100%; border-collapse: collapse; border-spacing: 0; }
#myTable th,
#myTable td { margin: 0; vertical-align: top; }
#myTable th { text-align: left; }
#myTable table { display: block; position: relative; width: 100%; }
#myTable thead { display: block; float: left; }
#myTable tbody { display: block; width: auto; position: relative; overflow-x: auto; white-space: nowrap; }
#myTable thead tr { display: block; }
#myTable th { display: block; text-align: right; }
#myTable tbody tr { display: inline-block; vertical-align: top; }
#myTable td { display: block; min-height: 1.25em; text-align: left; }

/* sort out borders */
#myTable th { border-bottom: 0; border-left: 0; border-top: 1px solid #A6A6A6; }
#myTable td { border-right: 1px solid #A6A6A6; border-right: 1px solid #A6A6A6; border-bottom: 0; }
#myTable th:last-child,
#myTable td:last-child { border-bottom: 1px solid #babcbf; }

}

/* accessibility */
table.tablesorter > thead > tr > th[aria-sort="descending"]:after {
content:"trié par ordre décroissant";
border: 0 none;
clip: rect(0px, 0px, 0px, 0px);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}
/* accessibility */
table.tablesorter > thead > tr > th[aria-sort="descending"]:after {
content:"trié par ordre décroissant";
border: 0 none;
clip: rect(0px, 0px, 0px, 0px);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}

/* accessibility */
table.tablesorter > thead > tr > th[aria-sort="ascending"]:after {
content:"trié par ordre croissant";
border: 0 none;
clip: rect(0px, 0px, 0px, 0px);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}
/* accessibility */
table.tablesorter > thead > tr > th[aria-sort="ascending"]:after {
content:"trié par ordre croissant";
border: 0 none;
clip: rect(0px, 0px, 0px, 0px);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}

// boostwatch

Expand Down

0 comments on commit 6d2caed

Please sign in to comment.