Skip to content

Commit

Permalink
icons css.
Browse files Browse the repository at this point in the history
  • Loading branch information
schwarzlichtbezirk committed Oct 31, 2022
1 parent 3a433cf commit 12ff3ba
Show file tree
Hide file tree
Showing 32 changed files with 557 additions and 386 deletions.
6 changes: 3 additions & 3 deletions frontend/devmode/fileitem.js
Original file line number Diff line number Diff line change
Expand Up @@ -300,9 +300,9 @@ const iconsvgsize = {
};

const iconwdh = {
sm: 'smimgw',
md: 'mdimgw',
lg: 'lgimgw',
sm: 'icon-wdh-sm',
md: 'icon-wdh-md',
lg: 'icon-wdh-lg',
};

const VueIcon = {
Expand Down
34 changes: 0 additions & 34 deletions frontend/skin/blue/card.css
Original file line number Diff line number Diff line change
Expand Up @@ -88,40 +88,6 @@
background-color: rgba(255, 255, 255, 0.25);
}

.imgscale {
object-position: center center;
object-fit: scale-down;
}

.imgcontain {
object-position: center center;
object-fit: contain;
}

.smimgw {
width: 96px;
}

.smimgh {
height: 96px;
}

.mdimgw {
width: 176px;
}

.mdimgh {
height: 176px;
}

.lgimgw {
width: 256px;
}

.lgimgh {
height: 256px;
}

.itemfont {
line-height: 1.25;
font-size: 0.72rem;
Expand Down
62 changes: 62 additions & 0 deletions frontend/skin/blue/icon.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@

.imgscale {
object-position: center center;
object-fit: scale-down;
}

.imgcontain {
object-position: center center;
object-fit: contain;
}

.icon-pix-xs {
max-width: 48px;
max-height: 48px;
}

.icon-svg-xs {
width: 48px;
height: 48px;
}

.icon-pix-sm {
max-width: 96px;
max-height: 96px;
}

.icon-svg-sm {
width: 96px;
height: 96px;
}

.icon-pix-md {
max-width: 176px;
max-height: 176px;
}

.icon-svg-md {
width: 176px;
height: 176px;
}

.icon-pix-lg {
max-width: 256px;
max-height: 256px;
}

.icon-svg-lg {
width: 256px;
height: 256px;
}

.icon-wdh-sm {
width: 96px;
}

.icon-wdh-md {
width: 176px;
}

.icon-wdh-lg {
width: 256px;
}
5 changes: 5 additions & 0 deletions frontend/skin/blue/page.css
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ body {
background: #7c8dad;
}

.menu-scrollable {
max-height: 20rem;
overflow-y: scroll;
}

.bg-tool {
background-color: #4d6082;
}
Expand Down
29 changes: 12 additions & 17 deletions frontend/skin/blue/slider.css
Original file line number Diff line number Diff line change
Expand Up @@ -60,29 +60,24 @@
}

.photothumbs {
background-color: silver;
background-color: powderblue;
border-radius: 0.25rem;
}

/* Thumbnail slider section */

.thumbslider {
height: 80px;
.thumbslider .thumb {
opacity: 0.75;
border: 0.25rem solid Silver;
}

.thumbslider .thumb {
height: 100%;
opacity: 0.75;
border: 0.25rem solid Silver;
.thumbslider .thumb:hover {
opacity: 1;
border: 0.25rem solid lightsteelblue;
}

.thumbslider .thumb:hover {
opacity: 1;
border: 0.25rem solid SpringGreen;
}

.thumbslider .thumb.active {
z-index: 1036;
opacity: 1;
border: 0.25rem solid MediumSpringGreen;
}
.thumbslider .thumb.active {
z-index: 1036;
opacity: 1;
border: 0.25rem solid deepskyblue;
}
34 changes: 0 additions & 34 deletions frontend/skin/coffee-beans/card.css
Original file line number Diff line number Diff line change
Expand Up @@ -93,40 +93,6 @@
background: rgba(128, 0, 128, 0.5); /* Purple */
}

.imgscale {
object-position: center center;
object-fit: scale-down;
}

.imgcontain {
object-position: center center;
object-fit: contain;
}

.smimgw {
width: 96px;
}

.smimgh {
height: 96px;
}

.mdimgw {
width: 176px;
}

.mdimgh {
height: 176px;
}

.lgimgw {
width: 256px;
}

.lgimgh {
height: 256px;
}

.itemfont {
line-height: 1.25;
font-size: 0.72rem;
Expand Down
62 changes: 62 additions & 0 deletions frontend/skin/coffee-beans/icon.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@

.imgscale {
object-position: center center;
object-fit: scale-down;
}

.imgcontain {
object-position: center center;
object-fit: contain;
}

.icon-pix-xs {
max-width: 48px;
max-height: 48px;
}

.icon-svg-xs {
width: 48px;
height: 48px;
}

.icon-pix-sm {
max-width: 96px;
max-height: 96px;
}

.icon-svg-sm {
width: 96px;
height: 96px;
}

.icon-pix-md {
max-width: 176px;
max-height: 176px;
}

.icon-svg-md {
width: 176px;
height: 176px;
}

.icon-pix-lg {
max-width: 256px;
max-height: 256px;
}

.icon-svg-lg {
width: 256px;
height: 256px;
}

.icon-wdh-sm {
width: 96px;
}

.icon-wdh-md {
width: 176px;
}

.icon-wdh-lg {
width: 256px;
}
5 changes: 5 additions & 0 deletions frontend/skin/coffee-beans/page.css
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@ a, .btn-link {
color: DarkKhaki;
}

.menu-scrollable {
max-height: 20rem;
overflow-y: scroll;
}

.bg-tool {
background-color: #754b28;
}
Expand Down
29 changes: 12 additions & 17 deletions frontend/skin/coffee-beans/slider.css
Original file line number Diff line number Diff line change
Expand Up @@ -60,29 +60,24 @@
}

.photothumbs {
background-color: silver;
background-color: peru;
border-radius: 0.25rem;
}

/* Thumbnail slider section */

.thumbslider {
height: 80px;
.thumbslider .thumb {
opacity: 0.75;
border: 0.25rem solid Silver;
}

.thumbslider .thumb {
height: 100%;
opacity: 0.75;
border: 0.25rem solid Silver;
.thumbslider .thumb:hover {
opacity: 1;
border: 0.25rem solid LemonChiffon;
}

.thumbslider .thumb:hover {
opacity: 1;
border: 0.25rem solid LemonChiffon;
}

.thumbslider .thumb.active {
z-index: 1036;
opacity: 1;
border: 0.25rem solid Gold;
}
.thumbslider .thumb.active {
z-index: 1036;
opacity: 1;
border: 0.25rem solid blueviolet;
}
34 changes: 0 additions & 34 deletions frontend/skin/cup-of-coffee/card.css
Original file line number Diff line number Diff line change
Expand Up @@ -93,40 +93,6 @@
background: rgba(128, 0, 128, 0.5); /* Purple */
}

.imgscale {
object-position: center center;
object-fit: scale-down;
}

.imgcontain {
object-position: center center;
object-fit: contain;
}

.smimgw {
width: 96px;
}

.smimgh {
height: 96px;
}

.mdimgw {
width: 176px;
}

.mdimgh {
height: 176px;
}

.lgimgw {
width: 256px;
}

.lgimgh {
height: 256px;
}

.itemfont {
line-height: 1.25;
font-size: 0.72rem;
Expand Down
Loading

0 comments on commit 12ff3ba

Please sign in to comment.