Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion public/styles/theme-base.css
Original file line number Diff line number Diff line change
Expand Up @@ -1003,7 +1003,6 @@ div.tip p:first-child {
.docs .qandaentry dt .phpcode * {
font-weight: normal;
}

/* }}} */


Expand All @@ -1022,15 +1021,20 @@ div.tip p:first-child {
width: 100%;
margin:0 0 1.5rem;
}

.doctable thead tr,
.segmentedlist thead tr {
border:1px solid;
}

.doctable tr,
.segmentedlist tr {
border:1px solid;
}

.doctable caption {
line-height: 2rem;
}
/* }}} */

/* {{{ lists */
Expand Down Expand Up @@ -1528,6 +1532,11 @@ td {
display: block;
}

/* Prevent table titles from breaking into multiple lines */
table caption {
display: inline;
}

/* Hide the table headers */
thead tr {
position: absolute;
Expand All @@ -1544,6 +1553,7 @@ td {
border-bottom: 1px solid #eee;
position: relative;
}

td:before {
left: -.50rem;
top: -0.3rem;
Expand Down
Loading