Files
static-cms/src/components/UnpublishedListing/UnpublishedListing.css
Benaiah Mischenko 7dd8ca13c4 Migrate to plain CSS (remove CSS modules) (#659)
* Migrate to plain CSS (remove CSS modules)

Change `prefixer` to a function instead of a proxy

* Switch prefix to `nc`

* Replace prefixer with literal class names

* Remove prefixer

* Fix migration errors

* fix compose migrations

* Remove unnecessary theme imports

* Remove old CSS import

* fix sticky toolbar positioning

* update to cssnano v4 so preset is used

* fix css pseudo selectors

* update lockfile
2017-10-18 12:29:38 -04:00

44 lines
810 B
CSS

:root {
--highlightColor: #38ab9b;
--defaultFontSize: 1em;
}
.nc-unpublishedListing-container {
display: flex;
justify-content: space-between;
}
.nc-unpublishedListing-column {
flex: 1 33%;
margin: -10px;
margin-top: 24px;
padding: 10px;
max-width: 33%;
transition: background-color .5s ease;
}
.nc-unpublishedListing-column-hovered {
border: 2px dashed var(--highlightColor);
border-radius: 4px;
}
.nc-unpublishedListing-columnHeading {
font-size: var(--defaultFontSize);
}
.nc-unpublishedListing-draggable {
cursor: move;
}
.nc-unpublishedListing-card {
margin-bottom: 10px;
}
/* Gross stuff below, React Toolbox hacks */
.nc-unpublishedListing-cardTitle h5 {
color: var(--backgroundAltColor) !important;
font-weight: 500 !important;
font-size: 21px !important;
}