Underscore filename for components
This commit is contained in:
parent
c5d37f172f
commit
35c42d2b4b
16 changed files with 16 additions and 16 deletions
48
sass/components/_tables.scss
Normal file
48
sass/components/_tables.scss
Normal file
|
@ -0,0 +1,48 @@
|
|||
/* ----------------------------- */
|
||||
/* ==Tables */
|
||||
/* ----------------------------- */
|
||||
|
||||
table,
|
||||
.table {
|
||||
width: 100%;
|
||||
max-width: 100%;
|
||||
table-layout: fixed;
|
||||
border-collapse: collapse;
|
||||
vertical-align: top;
|
||||
margin-bottom: $medium-value;
|
||||
}
|
||||
|
||||
.table {
|
||||
display: table;
|
||||
}
|
||||
|
||||
#recaptcha_table,
|
||||
.table-auto {
|
||||
table-layout: auto;
|
||||
}
|
||||
|
||||
td,
|
||||
th {
|
||||
vertical-align: top;
|
||||
min-width: $medium-value;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
/* deco */
|
||||
table,
|
||||
.table {
|
||||
border: 1px solid #ccc;
|
||||
}
|
||||
|
||||
caption {
|
||||
padding: $small-value;
|
||||
color: #555;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
td,
|
||||
th {
|
||||
padding: 0.3em 0.8em;
|
||||
border: 1px #aaa dotted;
|
||||
text-align: left;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue