mirror of
https://github.com/kingomarnajjar/flex-template-web.git
synced 2026-07-28 03:43:28 +10:00
385 lines
7.8 KiB
CSS
385 lines
7.8 KiB
CSS
@import '../../marketplace.css';
|
|
|
|
:root {
|
|
/*
|
|
These variables are available in global scope through ":root"
|
|
element (<html> tag). Variables with the same names are going to
|
|
overwrite each other if CSS Properties' (PostCSS plugin)
|
|
configuration "preserve: true" is used - meaning that variables
|
|
are left to CSS bundle. We are planning to enable it in the future
|
|
since browsers support CSS Properties already.
|
|
*/
|
|
|
|
--ManageListingCard_coverEverything: {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
}
|
|
}
|
|
|
|
.root {
|
|
/* Layout */
|
|
display: flex;
|
|
flex-direction: column;
|
|
position: relative;
|
|
cursor: pointer;
|
|
|
|
/* Remove link's hover effect */
|
|
&:hover {
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
|
|
.menuOverlayWrapper {
|
|
/* Positioning */
|
|
@apply --ManageListingCard_coverEverything;
|
|
}
|
|
|
|
.menuOverlay {
|
|
/* Positioning */
|
|
@apply --ManageListingCard_coverEverything;
|
|
|
|
/* Overlay */
|
|
background-color: var(--matterColorAnti);
|
|
mix-blend-mode: multiply;
|
|
opacity: 0;
|
|
transition: var(--transitionStyleButton);
|
|
}
|
|
|
|
.menuOverlayContent {
|
|
/* Positioning */
|
|
@apply --ManageListingCard_coverEverything;
|
|
/* Fonts */
|
|
@apply --marketplaceH4FontStyles;
|
|
font-weight: var(--fontWeightSemiBold);
|
|
color: var(--matterColorLight);
|
|
|
|
/* Layout */
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
opacity: 0;
|
|
|
|
@media (--viewportMedium) {
|
|
font-weight: var(--fontWeightSemiBold);
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
.threeToTwoWrapper {
|
|
/* Layout */
|
|
display: block;
|
|
width: 100%;
|
|
position: relative;
|
|
transition: var(--transitionStyleButton);
|
|
|
|
&:hover {
|
|
transform: scale(1.02);
|
|
box-shadow: var(--boxShadowListingCard);
|
|
}
|
|
}
|
|
|
|
/* Firefox doesn't support image aspect ratio inside flexbox */
|
|
.aspectWrapper {
|
|
padding-bottom: 66.6667%; /* 3:2 Aspect Ratio */
|
|
background: var(--matterColorNegative); /* Loading BG color */
|
|
margin-bottom: 1px; /* Fix 1px bug */
|
|
}
|
|
|
|
.rootForImage {
|
|
/* Layout - image will take space defined by aspect ratio wrapper */
|
|
@apply --ManageListingCard_coverEverything;
|
|
width: 100%;
|
|
border-radius: 2px;
|
|
}
|
|
|
|
.menubarWrapper {
|
|
/* Position */
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 42px;
|
|
}
|
|
|
|
.menubarGradient {
|
|
/* Position */
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
/* Gradient */
|
|
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAqCAYAAACUV/o4AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAALEwAACxMBAJqcGAAAAVlpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IlhNUCBDb3JlIDUuNC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZmLzEuMC8iPgogICAgICAgICA8dGlmZjpPcmllbnRhdGlvbj4xPC90aWZmOk9yaWVudGF0aW9uPgogICAgICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KTMInWQAAAGhJREFUKBVjZGBgKANibiAGga8sQAKEf4N4QMAC4vwH4r8gHgiABOAcmMAfEAMGsKrA0DIqAAsvHGFKkwACRRQjzGJQRP2DcUA0LOZAEQ5S9R8mAJIEA6wCyIYSqYVSz4FcxwR1E5gCAD7HLabS/HFUAAAAAElFTkSuQmCC');
|
|
background-repeat: repeat;
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.menubar {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.menuLabel {
|
|
padding: 0px 9px 0 8px;
|
|
}
|
|
|
|
.iconWrapper {
|
|
padding: 0px 10px 1px 10px;
|
|
color: var(--matterColorLight);
|
|
border-radius: 4px;
|
|
transition: var(--transitionStyleButton);
|
|
|
|
&:hover {
|
|
background-color: rgba(0, 0, 0, 0.7);
|
|
}
|
|
}
|
|
|
|
.listingMenuIsOpen {
|
|
& .iconWrapper {
|
|
background-color: rgba(0, 0, 0, 0.7);
|
|
color: var(--matterColorLight);
|
|
}
|
|
}
|
|
|
|
.menuContent {
|
|
visibility: hidden;
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
|
|
position: absolute;
|
|
right: 0;
|
|
z-index: var(--zIndexPopup);
|
|
|
|
background-color: var(--matterColor);
|
|
border-radius: 4px;
|
|
box-shadow: var(--boxShadowPopup);
|
|
}
|
|
|
|
.menuItem {
|
|
@apply --marketplaceH5FontStyles;
|
|
color: var(--matterColorLight);
|
|
font-weight: var(--fontWeightMedium);
|
|
white-space: nowrap;
|
|
text-align: left;
|
|
padding: 8px 14px;
|
|
border-radius: 4px;
|
|
|
|
/* Remove default margins from font */
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
transition: var(--transitionStyleButton);
|
|
|
|
&:hover {
|
|
text-decoration: none;
|
|
background-color: var(--failColor);
|
|
}
|
|
|
|
@media (--viewportMedium) {
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
.menuItemDisabled {
|
|
color: var(--matterColorNegative);
|
|
|
|
&:hover {
|
|
color: var(--matterColorNegative);
|
|
}
|
|
}
|
|
|
|
.info {
|
|
/* Layout */
|
|
display: flex;
|
|
flex-direction: row;
|
|
padding: 16px 0 2px 0;
|
|
}
|
|
|
|
.price {
|
|
/* Layout */
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-start;
|
|
flex-shrink: 0;
|
|
margin-right: 18px;
|
|
}
|
|
|
|
.priceValue {
|
|
/* Font */
|
|
@apply --marketplaceH3FontStyles;
|
|
|
|
/* Remove default margins from font */
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
|
|
@media (--viewportMedium) {
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
.perUnit {
|
|
/* Font */
|
|
@apply --marketplaceTinyFontStyles;
|
|
color: var(--matterColor);
|
|
|
|
/* Remove default margins from font */
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
|
|
@media (--viewportMedium) {
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
.mainInfo {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.title {
|
|
/* Font */
|
|
@apply --marketplaceH3FontStyles;
|
|
color: var(--matterColor);
|
|
|
|
/* Remove default margins from font */
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
|
|
@media (--viewportMedium) {
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
.titlePending {
|
|
color: var(--attentionColor);
|
|
}
|
|
|
|
.edit {
|
|
@apply --marketplaceButtonStylesSecondary;
|
|
|
|
/* TODO: Odd font-size */
|
|
font-size: 14px;
|
|
|
|
/* Reset min-height from button styles */
|
|
min-height: 0;
|
|
|
|
/* Reserve space for button */
|
|
flex-shrink: 0;
|
|
width: auto;
|
|
height: 41px;
|
|
padding: 7px 14px 7px 35px;
|
|
|
|
/* Add edit icon as a background image */
|
|
background-image: url('data:image/svg+xml;utf8,<svg width="14" height="14" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"><g stroke="%234A4A4A" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round"><path d="M5.307 11.155L1 13l1.846-4.308L10.54 1 13 3.46zM11 5L9 3M5 11L3 9"/></g></svg>');
|
|
background-repeat: no-repeat;
|
|
background-position: 15px center;
|
|
}
|
|
|
|
.loadingOverlayWrapper,
|
|
.errorOverlayWrapper,
|
|
.closedOverlayWrapper,
|
|
.pendingApprovalOverlayWrapper {
|
|
/* Positioning */
|
|
@apply --ManageListingCard_coverEverything;
|
|
}
|
|
|
|
.loadingOverlay,
|
|
.errorOverlay,
|
|
.closedOverlay,
|
|
.pendingApprovalOverlay {
|
|
/* Positioning */
|
|
@apply --ManageListingCard_coverEverything;
|
|
|
|
/* Overlay background style */
|
|
background-color: var(--matterColorLight);
|
|
opacity: 0.9;
|
|
}
|
|
|
|
.pendingApprovalOverlay {
|
|
cursor: default;
|
|
}
|
|
|
|
.loadingOverlayContent,
|
|
.errorOverlayContent,
|
|
.closedOverlayContent,
|
|
.pendingApprovalOverlayContent {
|
|
@apply --marketplaceH4FontStyles;
|
|
color: var(--matterColor);
|
|
|
|
/* Positioning */
|
|
@apply --ManageListingCard_coverEverything;
|
|
|
|
/* Layout */
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
cursor: default;
|
|
|
|
/* Remove default margins from font */
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
|
|
@media (--viewportMedium) {
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
.errorOverlayContent {
|
|
color: var(--failColor);
|
|
justify-content: flex-start;
|
|
margin-top: 90px;
|
|
}
|
|
|
|
.pendingApprovalOverlayContent {
|
|
justify-content: flex-start;
|
|
margin-top: 90px;
|
|
}
|
|
|
|
.closedMessage {
|
|
max-width: 220px;
|
|
text-align: center;
|
|
}
|
|
|
|
.pendingMessage {
|
|
max-width: 300px;
|
|
text-align: center;
|
|
}
|
|
|
|
.openListingButton {
|
|
@apply --marketplaceButtonStylesPrimary;
|
|
@apply --marketplaceH5FontStyles;
|
|
|
|
/* Reset min-height from button styles */
|
|
min-height: 0;
|
|
|
|
width: 114px;
|
|
height: 41px;
|
|
padding: 6px 0 8px;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.menu {
|
|
display: none;
|
|
}
|
|
|
|
.cardIsOpen {
|
|
display: block;
|
|
}
|