diff options
| author | Volpeon <git@volpeon.ink> | 2024-06-21 23:07:50 +0200 |
|---|---|---|
| committer | Volpeon <git@volpeon.ink> | 2024-06-21 23:07:50 +0200 |
| commit | 48cb00040763459fc46d4aa108bf72c12f48f422 (patch) | |
| tree | 9609470d56bb31d55697ef0c42f1c908804dd3f1 /src/scopes/_tables.scss | |
| parent | Update (diff) | |
| download | iro-design-48cb00040763459fc46d4aa108bf72c12f48f422.tar.gz iro-design-48cb00040763459fc46d4aa108bf72c12f48f422.tar.bz2 iro-design-48cb00040763459fc46d4aa108bf72c12f48f422.zip | |
WIP: Refactoring
Diffstat (limited to 'src/scopes/_tables.scss')
| -rw-r--r-- | src/scopes/_tables.scss | 114 |
1 files changed, 0 insertions, 114 deletions
diff --git a/src/scopes/_tables.scss b/src/scopes/_tables.scss deleted file mode 100644 index f78e81b..0000000 --- a/src/scopes/_tables.scss +++ /dev/null | |||
| @@ -1,114 +0,0 @@ | |||
| 1 | @use 'iro-sass/src/index' as iro; | ||
| 2 | @use '../functions' as fn; | ||
| 3 | @use '../mixins' as mx; | ||
| 4 | |||
| 5 | @include iro.props-namespace('tables') { | ||
| 6 | @include iro.props-store(( | ||
| 7 | --dims: ( | ||
| 8 | --pad-x: fn.global-dim(--size --175), | ||
| 9 | --pad-y: fn.global-dim(--size --125), | ||
| 10 | --rounding: 3px, | ||
| 11 | --margin-top: fn.global-dim(--paragraph --margin-top), | ||
| 12 | ), | ||
| 13 | ), 'dims'); | ||
| 14 | |||
| 15 | @include iro.props-store(( | ||
| 16 | --colors: ( | ||
| 17 | --border: fn.global-color(--obj), | ||
| 18 | --heading: fn.global-color(--fg-hi), | ||
| 19 | --box: ( | ||
| 20 | --bg: fn.global-color(--bg-hi2), | ||
| 21 | ) | ||
| 22 | ) | ||
| 23 | ), 'colors'); | ||
| 24 | |||
| 25 | @include iro.bem-scope(iro.props-namespace()) { | ||
| 26 | table { | ||
| 27 | margin-top: fn.dim(--margin-top); | ||
| 28 | border-spacing: 0; | ||
| 29 | border-collapse: separate; | ||
| 30 | } | ||
| 31 | |||
| 32 | th { | ||
| 33 | @include mx.set-font(--standard, ( | ||
| 34 | --line-height: null, | ||
| 35 | --size: fn.global-dim(--font-size --50), | ||
| 36 | --weight: 500, | ||
| 37 | --transform: uppercase, | ||
| 38 | --spacing: .5px | ||
| 39 | )); | ||
| 40 | |||
| 41 | padding: fn.dim(--pad-y) fn.dim(--pad-x); | ||
| 42 | color: fn.color(--heading); | ||
| 43 | text-align: left; | ||
| 44 | } | ||
| 45 | |||
| 46 | td { | ||
| 47 | padding: fn.dim(--pad-y) fn.dim(--pad-x); | ||
| 48 | border-width: 1px 0 0; | ||
| 49 | border-style: solid; | ||
| 50 | border-color: fn.color(--border); | ||
| 51 | } | ||
| 52 | |||
| 53 | tr { | ||
| 54 | &:last-child { | ||
| 55 | td { | ||
| 56 | border-bottom-width: 1px; | ||
| 57 | } | ||
| 58 | } | ||
| 59 | } | ||
| 60 | |||
| 61 | @include iro.bem-modifier('flush') { | ||
| 62 | th, | ||
| 63 | td { | ||
| 64 | &:first-child { | ||
| 65 | padding-left: 0; | ||
| 66 | } | ||
| 67 | |||
| 68 | &:last-child { | ||
| 69 | padding-right: 0; | ||
| 70 | } | ||
| 71 | } | ||
| 72 | } | ||
| 73 | |||
| 74 | @include iro.bem-modifier('box') { | ||
| 75 | td { | ||
| 76 | background-color: fn.color(--box --bg); | ||
| 77 | |||
| 78 | &:first-child { | ||
| 79 | border-left-width: 1px; | ||
| 80 | } | ||
| 81 | |||
| 82 | &:last-child { | ||
| 83 | border-right-width: 1px; | ||
| 84 | } | ||
| 85 | } | ||
| 86 | |||
| 87 | tr { | ||
| 88 | &:first-child { | ||
| 89 | td { | ||
| 90 | &:first-child { | ||
| 91 | border-top-left-radius: fn.dim(--rounding); | ||
| 92 | } | ||
| 93 | |||
| 94 | &:last-child { | ||
| 95 | border-top-right-radius: fn.dim(--rounding); | ||
| 96 | } | ||
| 97 | } | ||
| 98 | } | ||
| 99 | |||
| 100 | &:last-child { | ||
| 101 | td { | ||
| 102 | &:first-child { | ||
| 103 | border-bottom-left-radius: fn.dim(--rounding); | ||
| 104 | } | ||
| 105 | |||
| 106 | &:last-child { | ||
| 107 | border-bottom-right-radius: fn.dim(--rounding); | ||
| 108 | } | ||
| 109 | } | ||
| 110 | } | ||
| 111 | } | ||
| 112 | } | ||
| 113 | } | ||
| 114 | } | ||
