| 1234567891011121314151617181920212223242526272829303132 |
- /*
- * Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- .ck.ck-content table {
- /* Give the table some air and center it horizontally */
- margin: 1em auto;
- /* The table cells should have slight borders */
- border-collapse: collapse;
- border-spacing: 0;
- /* The outer border of the table should be slightly darker than the inner lines. */
- &:not(:hover) {
- outline: 1px solid hsl(0, 0%, 70%);
- outline-offset: -1px;
- }
- & td,
- & th {
- min-width: 2em;
- padding: .4em;
- text-align: center;
- border-color: hsl(0, 0%, 85%);
- }
- & th {
- font-weight: bold;
- background: hsl(0, 0%, 98%);
- }
- }
|