winter/modules/backend/models/editorsetting/default_styles.less
Samuel Georges a6ac4f50ce Create proposed Editor settings
Prevent Froala files from being added to git
2016-05-19 13:13:31 +10:00

63 lines
929 B
Plaintext

/*
* Text
*/
.oc-text-gray {
color: #AAA !important;
}
.oc-text-bordered {
border-top: solid 1px #222;
border-bottom: solid 1px #222;
padding: 10px 0;
}
.oc-text-spaced {
letter-spacing: 1px;
}
.oc-text-uppercase {
text-transform: uppercase;
}
/*
* Links
*/
a.oc-link-strong {
font-weight: 700;
}
a.oc-link-green {
color: green;
}
/*
* Table
*/
table.oc-dashed-borders td,
table.oc-dashed-borders th {
border-style: dashed;
}
table.oc-alternate-rows tbody tr:nth-child(2n) {
background: #f5f5f5;
}
/*
* Table cell
*/
table td.oc-cell-highlighted,
table th.oc-cell-highlighted {
border: 1px double red;
}
table td.oc-cell-thick-border,
table th.oc-cell-thick-border {
border-width: 2px;
}
/*
* Images
*/
img.oc-img-rounded {
border-radius: 100%;
background-clip: padding-box;
}
img.oc-img-bordered {
border: solid 10px #CCC;
box-sizing: content-box;
}