-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CSS - Update to Edje 3.1 - All colors are stored in `$h-colors` and will be outputted as CSS Variable. GUTENBERG - Changed Table block CSS due to them wrapping the table in `<figure>`
- Loading branch information
Showing
22 changed files
with
275 additions
and
210 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
31 changes: 16 additions & 15 deletions
31
assets/css/admin-gutenberg.css → assets/css/my-block-editor.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,27 @@ | ||
:root{--main: #1976d2;--mainRGB: 25, 118, 210 | ||
;--main-dark: #0e4377;--main-darkRGB: 14, 67, 119 | ||
;--main-light: #bbdefb;--main-lightRGB: 187, 222, 251 | ||
;--sub: #b0bec5;--subRGB: 176, 190, 197 | ||
;--sub-dark: #90a4ae;--sub-darkRGB: 144, 164, 174 | ||
;--sub-light: #eceff1;--sub-lightRGB: 236, 239, 241 | ||
;--red: #d32f2f;--redRGB: 211, 47, 47 | ||
/*! | ||
EDJE Functional Sass v3.0.0 | ||
Documentation: https://github.com/hrsetyono/edje/wiki | ||
*/:root{--red: #d32f2f;--redRGB: 211, 47, 47 | ||
;--red-dark: #b71c1c;--red-darkRGB: 183, 28, 28 | ||
;--red-light: #ffcdd2;--red-lightRGB: 255, 205, 210 | ||
;--yellow: #ffee58;--yellowRGB: 255, 238, 88 | ||
;--yellow-light: #fff9c4;--yellow-lightRGB: 255, 249, 196 | ||
;--orange: #fB8c00;--orangeRGB: 251, 140, 0 | ||
;--orange-dark: #e65100;--orange-darkRGB: 230, 81, 0 | ||
;--orange-light: #ffe0b2;--orange-lightRGB: 255, 224, 178 | ||
;--yellow: #ffee58;--yellowRGB: 255, 238, 88 | ||
;--yellow-dark: #ffd600;--yellow-darkRGB: 255, 214, 0 | ||
;--yellow-light: #fff9c4;--yellow-lightRGB: 255, 249, 196 | ||
;--green: #4caf50;--greenRGB: 76, 175, 80 | ||
;--green-dark: #2e7d32;--green-darkRGB: 46, 125, 50 | ||
;--green-light: #c8e6c9;--green-lightRGB: 200, 230, 201 | ||
;--blue: #1976d2;--blueRGB: 25, 118, 210 | ||
;--blue-dark: #1565c0;--blue-darkRGB: 21, 101, 192 | ||
;--blue-light: #bbdefb;--blue-lightRGB: 187, 222, 251 | ||
;--black: #000;--blackRGB: 0, 0, 0 | ||
;--white: #fff;--whiteRGB: 255, 255, 255 | ||
;--gray: #b0bec5;--grayRGB: 176, 190, 197 | ||
;--gray-light: #eceff1;--gray-lightRGB: 236, 239, 241 | ||
;--gray-dark: #90a4ae;--gray-darkRGB: 144, 164, 174 | ||
;--text: #222;--textRGB: 34, 34, 34 | ||
;--gray-light: #eceff1;--gray-lightRGB: 236, 239, 241 | ||
;--black: #000;--blackRGB: 0, 0, 0 | ||
;--white: #fff;--whiteRGB: 255, 255, 255 | ||
;--main: var(--blue);--main-dark: var(--blue-dark);--main-light: var(--blue-light);--sub: var(--gray);--sub-dark: var(--gray-dark);--sub-light: var(--gray-light);--text: #222;--textRGB: 34, 34, 34 | ||
;--passive: #888;--passiveRGB: 136, 136, 136 | ||
;--header: #222;--headerRGB: 34, 34, 34 | ||
;--body: #fff;--bodyRGB: 255, 255, 255 | ||
;--header: var(--text);--body: #fff;--bodyRGB: 255, 255, 255 | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.