restore composer.json, add mysqli extension
This commit is contained in:
605
public/vendor/dashboard/app-assets/css/pages/app-chat.css
vendored
Executable file
605
public/vendor/dashboard/app-assets/css/pages/app-chat.css
vendored
Executable file
@@ -0,0 +1,605 @@
|
||||
/*========================================================
|
||||
DARK LAYOUT
|
||||
=========================================================*/
|
||||
.chat-application .content-area-wrapper .content-right .content-wrapper
|
||||
{
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.chat-application .content-area-wrapper
|
||||
{
|
||||
border: 1px solid #dae1e7;
|
||||
border-radius: .25rem;
|
||||
}
|
||||
|
||||
.chat-application .chat-profile-sidebar
|
||||
{
|
||||
position: fixed;
|
||||
z-index: 6;
|
||||
|
||||
width: 400px;
|
||||
height: -webkit-calc(100vh - 13rem);
|
||||
height: -moz-calc(100vh - 13rem);
|
||||
height: calc(100vh - 13rem);
|
||||
margin: 0;
|
||||
|
||||
-webkit-transition: all .3s ease;
|
||||
-moz-transition: all .3s ease;
|
||||
-o-transition: all .3s ease;
|
||||
transition: all .3s ease;
|
||||
-webkit-transform: translateX(-110%);
|
||||
-moz-transform: translateX(-110%);
|
||||
-ms-transform: translateX(-110%);
|
||||
-o-transform: translateX(-110%);
|
||||
transform: translateX(-110%);
|
||||
|
||||
border-right: 1px solid #e4e7ed;
|
||||
border-radius: .25rem;
|
||||
border-top-right-radius: 0;
|
||||
border-bottom-right-radius: 0;
|
||||
background-color: #fff;
|
||||
}
|
||||
.chat-application .chat-profile-sidebar.show
|
||||
{
|
||||
-webkit-transition: all .3s ease;
|
||||
-moz-transition: all .3s ease;
|
||||
-o-transition: all .3s ease;
|
||||
transition: all .3s ease;
|
||||
-webkit-transform: translateX(0);
|
||||
-moz-transform: translateX(0);
|
||||
-ms-transform: translateX(0);
|
||||
-o-transform: translateX(0);
|
||||
transform: translateX(0);
|
||||
}
|
||||
.chat-application .chat-profile-sidebar .chat-profile-header
|
||||
{
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -moz-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
|
||||
text-align: center;
|
||||
|
||||
border-bottom: 1px solid rgba(0, 0, 0, .06);
|
||||
}
|
||||
.chat-application .chat-profile-sidebar .chat-profile-header .header-profile-sidebar
|
||||
{
|
||||
margin: 2rem auto .5rem;
|
||||
}
|
||||
.chat-application .chat-profile-sidebar .chat-profile-header .avatar
|
||||
{
|
||||
margin-bottom: 1.25rem;
|
||||
}
|
||||
.chat-application .chat-profile-sidebar .chat-profile-header .close-icon
|
||||
{
|
||||
font-size: 1.75rem;
|
||||
|
||||
position: absolute;
|
||||
top: 14px;
|
||||
right: 13px;
|
||||
|
||||
cursor: pointer;
|
||||
}
|
||||
.chat-application .chat-profile-sidebar .profile-sidebar-area .scroll-area
|
||||
{
|
||||
position: relative;
|
||||
|
||||
height: -webkit-calc(100vh - 24.25rem);
|
||||
height: -moz-calc(100vh - 24.25rem);
|
||||
height: calc(100vh - 24.25rem);
|
||||
padding: 2rem;
|
||||
}
|
||||
|
||||
.chat-application .sidebar-content
|
||||
{
|
||||
width: 400px;
|
||||
height: -webkit-calc(100vh - 13rem);
|
||||
height: -moz-calc(100vh - 13rem);
|
||||
height: calc(100vh - 13rem);
|
||||
margin: 0;
|
||||
|
||||
border-right: 1px solid #e4e7ed;
|
||||
border-radius: .25rem;
|
||||
border-top-right-radius: 0;
|
||||
border-bottom-right-radius: 0;
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
.chat-application .sidebar-content .sidebar-close-icon
|
||||
{
|
||||
font-size: 1.25rem;
|
||||
|
||||
position: absolute;
|
||||
z-index: 1;
|
||||
top: .25rem;
|
||||
right: .25rem;
|
||||
|
||||
visibility: hidden;
|
||||
|
||||
cursor: pointer;
|
||||
}
|
||||
.chat-application .sidebar-content .chat-fixed-search
|
||||
{
|
||||
position: fixed;
|
||||
|
||||
width: 400px;
|
||||
padding: .65rem;
|
||||
|
||||
border-bottom: 1px solid #e4e7ed;
|
||||
}
|
||||
.chat-application .sidebar-content .chat-fixed-search .sidebar-profile-toggle .avatar
|
||||
{
|
||||
display: inline-table;
|
||||
|
||||
width: -webkit-calc(32px + 8px);
|
||||
width: -moz-calc(32px + 8px);
|
||||
width: calc(32px + 8px);
|
||||
}
|
||||
.chat-application .sidebar-content .chat-fixed-search input.form-control
|
||||
{
|
||||
height: -webkit-calc(1.25em + 1.4rem + 4px);
|
||||
height: -moz-calc(1.25em + 1.4rem + 4px);
|
||||
height: calc(1.25em + 1.4rem + 4px);
|
||||
padding: .9rem 1rem .9rem 3rem;
|
||||
}
|
||||
.chat-application .sidebar-content .chat-fixed-search .form-control-position
|
||||
{
|
||||
top: 5px;
|
||||
}
|
||||
.chat-application .sidebar-content .chat-fixed-search .form-control-position i
|
||||
{
|
||||
left: 9px;
|
||||
}
|
||||
.chat-application .sidebar-content .chat-user-list
|
||||
{
|
||||
width: 400px;
|
||||
height: -webkit-calc(100% - 5rem);
|
||||
height: -moz-calc(100% - 5rem);
|
||||
height: calc(100% - 5rem);
|
||||
margin-top: 5rem;
|
||||
}
|
||||
.chat-application .sidebar-content .chat-user-list ul
|
||||
{
|
||||
margin-bottom: 0;
|
||||
padding-left: 0;
|
||||
}
|
||||
.chat-application .sidebar-content .chat-user-list li
|
||||
{
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -moz-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
|
||||
margin-right: 1px;
|
||||
padding: 1.322rem .85rem;
|
||||
|
||||
-webkit-box-pack: justify;
|
||||
-webkit-justify-content: space-between;
|
||||
-moz-box-pack: justify;
|
||||
-ms-flex-pack: justify;
|
||||
justify-content: space-between;
|
||||
-webkit-box-align: center;
|
||||
-webkit-align-items: center;
|
||||
-moz-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
}
|
||||
.chat-application .sidebar-content .chat-user-list li:not(:first-child)
|
||||
{
|
||||
border-top: 1px solid #e4e7ed;
|
||||
}
|
||||
.chat-application .sidebar-content .chat-user-list li .user-chat-info
|
||||
{
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -moz-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
overflow: hidden;
|
||||
|
||||
width: 100%;
|
||||
|
||||
-webkit-box-pack: justify;
|
||||
-webkit-justify-content: space-between;
|
||||
-moz-box-pack: justify;
|
||||
-ms-flex-pack: justify;
|
||||
justify-content: space-between;
|
||||
}
|
||||
.chat-application .sidebar-content .chat-user-list li .contact-info
|
||||
{
|
||||
width: -webkit-calc(100% - 1rem - 50px);
|
||||
width: -moz-calc(100% - 1rem - 50px);
|
||||
width: calc(100% - 1rem - 50px);
|
||||
margin-top: .3rem;
|
||||
}
|
||||
.chat-application .sidebar-content .chat-user-list li .contact-info .truncate
|
||||
{
|
||||
margin: 0;
|
||||
}
|
||||
.chat-application .sidebar-content .chat-user-list li:hover
|
||||
{
|
||||
cursor: pointer;
|
||||
|
||||
background: #eee;
|
||||
}
|
||||
.chat-application .sidebar-content .chat-user-list li.active
|
||||
{
|
||||
color: #fff;
|
||||
background: -webkit-linear-gradient(332deg, #7367f0, rgba(115, 103, 240, .7));
|
||||
background: -moz-linear-gradient(332deg, #7367f0, rgba(115, 103, 240, .7));
|
||||
background: -o-linear-gradient(332deg, #7367f0, rgba(115, 103, 240, .7));
|
||||
background: linear-gradient(118deg, #7367f0, rgba(115, 103, 240, .7));
|
||||
-webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, .11), 0 5px 15px 0 rgba(0, 0, 0, .08);
|
||||
box-shadow: 0 15px 30px 0 rgba(0, 0, 0, .11), 0 5px 15px 0 rgba(0, 0, 0, .08);
|
||||
}
|
||||
.chat-application .sidebar-content .chat-user-list li.active h1,
|
||||
.chat-application .sidebar-content .chat-user-list li.active h2,
|
||||
.chat-application .sidebar-content .chat-user-list li.active h3,
|
||||
.chat-application .sidebar-content .chat-user-list li.active h4,
|
||||
.chat-application .sidebar-content .chat-user-list li.active h5,
|
||||
.chat-application .sidebar-content .chat-user-list li.active h6
|
||||
{
|
||||
color: #fff;
|
||||
}
|
||||
.chat-application .sidebar-content .chat-user-list li img
|
||||
{
|
||||
border: 2px solid #fff;
|
||||
}
|
||||
.chat-application .sidebar-content .card
|
||||
{
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.chat-application .chat-overlay
|
||||
{
|
||||
position: absolute;
|
||||
z-index: 2;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
|
||||
display: block;
|
||||
visibility: hidden;
|
||||
|
||||
border-radius: .25rem;
|
||||
}
|
||||
.chat-application .chat-overlay.show
|
||||
{
|
||||
visibility: visible;
|
||||
|
||||
background-color: rgba(0, 0, 0, .2);
|
||||
}
|
||||
|
||||
.chat-application .chat-app-window .favorite,
|
||||
.chat-application .chat-app-window .sidebar-toggle
|
||||
{
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.chat-application .chat-app-window .user-chats
|
||||
{
|
||||
position: relative;
|
||||
|
||||
height: -webkit-calc(100vh - 23.5rem);
|
||||
height: -moz-calc(100vh - 23.5rem);
|
||||
height: calc(100vh - 23.5rem);
|
||||
padding: 20px 30px;
|
||||
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.chat-application .chat-app-window .start-chat-area,
|
||||
.chat-application .chat-app-window .user-chats
|
||||
{
|
||||
background-color: #dfdbe5;
|
||||
background-image: url('../../images/backgrounds/chat-bg.svg');
|
||||
}
|
||||
|
||||
.chat-application .chat-app-window .start-chat-area
|
||||
{
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -moz-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
||||
height: -webkit-calc(100vh - 13rem);
|
||||
height: -moz-calc(100vh - 13rem);
|
||||
height: calc(100vh - 13rem);
|
||||
|
||||
-webkit-box-pack: center;
|
||||
-webkit-justify-content: center;
|
||||
-moz-box-pack: center;
|
||||
-ms-flex-pack: center;
|
||||
justify-content: center;
|
||||
-webkit-box-align: center;
|
||||
-webkit-align-items: center;
|
||||
-moz-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-box-direction: normal;
|
||||
-webkit-flex-direction: column;
|
||||
-moz-box-orient: vertical;
|
||||
-moz-box-direction: normal;
|
||||
-ms-flex-direction: column;
|
||||
}
|
||||
.chat-application .chat-app-window .start-chat-area .start-chat-icon,
|
||||
.chat-application .chat-app-window .start-chat-area .start-chat-text
|
||||
{
|
||||
background: white;
|
||||
-webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .12), 0 2px 4px 0 rgba(0, 0, 0, .08) !important;
|
||||
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .12), 0 2px 4px 0 rgba(0, 0, 0, .08) !important;
|
||||
}
|
||||
.chat-application .chat-app-window .start-chat-area .start-chat-text
|
||||
{
|
||||
cursor: pointer;
|
||||
|
||||
border-radius: -webkit-calc(.5rem * 4);
|
||||
border-radius: -moz-calc(.5rem * 4);
|
||||
border-radius: calc(.5rem * 4);
|
||||
}
|
||||
.chat-application .chat-app-window .start-chat-area .start-chat-icon
|
||||
{
|
||||
font-size: 4rem;
|
||||
|
||||
padding: 2rem;
|
||||
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.chat-application .chat-app-form
|
||||
{
|
||||
padding: 20px 10px;
|
||||
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
.chat-application .chats
|
||||
{
|
||||
padding: 0;
|
||||
}
|
||||
.chat-application .chats .chat-body
|
||||
{
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
|
||||
margin: 10px 30px 0 0;
|
||||
}
|
||||
.chat-application .chats .chat-body .chat-content
|
||||
{
|
||||
display: block;
|
||||
float: right;
|
||||
clear: both;
|
||||
|
||||
margin: 0 20px 10px 0;
|
||||
padding: .75rem 1rem;
|
||||
|
||||
text-align: right;
|
||||
|
||||
color: #fff;
|
||||
border-radius: .5rem;
|
||||
background: -webkit-linear-gradient(332deg, #7367f0, rgba(115, 103, 240, .7));
|
||||
background: -moz-linear-gradient(332deg, #7367f0, rgba(115, 103, 240, .7));
|
||||
background: -o-linear-gradient(332deg, #7367f0, rgba(115, 103, 240, .7));
|
||||
background: linear-gradient(118deg, #7367f0, rgba(115, 103, 240, .7));
|
||||
-webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .12), 0 2px 4px 0 rgba(0, 0, 0, .08);
|
||||
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .12), 0 2px 4px 0 rgba(0, 0, 0, .08);
|
||||
}
|
||||
.chat-application .chats .chat-body .chat-content p
|
||||
{
|
||||
margin: 0;
|
||||
}
|
||||
.chat-application .chats .chat-avatar
|
||||
{
|
||||
float: right;
|
||||
}
|
||||
.chat-application .chats .chat-left .chat-avatar
|
||||
{
|
||||
float: left;
|
||||
}
|
||||
.chat-application .chats .chat-left .chat-body
|
||||
{
|
||||
margin-right: 0;
|
||||
margin-left: 30px;
|
||||
}
|
||||
.chat-application .chats .chat-left .chat-content
|
||||
{
|
||||
float: left;
|
||||
|
||||
margin: 0 0 10px 20px;
|
||||
|
||||
text-align: left;
|
||||
|
||||
color: #626262;
|
||||
background: none;
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
.chat-application .user-profile-sidebar
|
||||
{
|
||||
position: fixed;
|
||||
z-index: 6;
|
||||
right: 4.2rem;
|
||||
bottom: 5.25rem;
|
||||
|
||||
width: 400px;
|
||||
height: -webkit-calc(100vh - 13rem);
|
||||
height: -moz-calc(100vh - 13rem);
|
||||
height: calc(100vh - 13rem);
|
||||
margin: 0;
|
||||
|
||||
-webkit-transition: all .3s ease;
|
||||
-moz-transition: all .3s ease;
|
||||
-o-transition: all .3s ease;
|
||||
transition: all .3s ease;
|
||||
-webkit-transform: translateX(110%);
|
||||
-moz-transform: translateX(110%);
|
||||
-ms-transform: translateX(110%);
|
||||
-o-transform: translateX(110%);
|
||||
transform: translateX(110%);
|
||||
|
||||
opacity: 0;
|
||||
border-right: 1px solid #e4e7ed;
|
||||
border-radius: .25rem;
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-left-radius: 0;
|
||||
background-color: #fff;
|
||||
}
|
||||
.chat-application .user-profile-sidebar.show
|
||||
{
|
||||
-webkit-transition: all .3s ease;
|
||||
-moz-transition: all .3s ease;
|
||||
-o-transition: all .3s ease;
|
||||
transition: all .3s ease;
|
||||
-webkit-transform: translateX(7%);
|
||||
-moz-transform: translateX(7%);
|
||||
-ms-transform: translateX(7%);
|
||||
-o-transform: translateX(7%);
|
||||
transform: translateX(7%);
|
||||
|
||||
opacity: 1;
|
||||
}
|
||||
.chat-application .user-profile-sidebar .user-profile-header
|
||||
{
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -moz-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
|
||||
text-align: center;
|
||||
|
||||
border-bottom: 1px solid rgba(0, 0, 0, .06);
|
||||
}
|
||||
.chat-application .user-profile-sidebar .user-profile-header .header-profile-sidebar
|
||||
{
|
||||
margin: 2rem auto .5rem;
|
||||
}
|
||||
.chat-application .user-profile-sidebar .user-profile-header .avatar
|
||||
{
|
||||
margin-bottom: 1.25rem;
|
||||
}
|
||||
.chat-application .user-profile-sidebar .user-profile-header .close-icon
|
||||
{
|
||||
font-size: 1.75rem;
|
||||
|
||||
position: absolute;
|
||||
top: 14px;
|
||||
right: 13px;
|
||||
|
||||
cursor: pointer;
|
||||
}
|
||||
.chat-application .user-profile-sidebar .user-profile-sidebar-area
|
||||
{
|
||||
position: relative;
|
||||
|
||||
height: -webkit-calc(100vh - 24.25rem);
|
||||
height: -moz-calc(100vh - 24.25rem);
|
||||
height: calc(100vh - 24.25rem);
|
||||
}
|
||||
|
||||
@media (max-width: 767.98px)
|
||||
{
|
||||
.chat-application .chat-app-window
|
||||
{
|
||||
height: -webkit-calc(100% - 132px);
|
||||
height: -moz-calc(100% - 132px);
|
||||
height: calc(100% - 132px);
|
||||
}
|
||||
.chat-application .sidebar-content .sidebar-close-icon
|
||||
{
|
||||
visibility: visible;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 575.98px)
|
||||
{
|
||||
.chat-application .sidebar-content
|
||||
{
|
||||
left: -4px !important;
|
||||
|
||||
width: 260px;
|
||||
}
|
||||
.chat-application .sidebar-content .chat-fixed-search,
|
||||
.chat-application .sidebar-content .chat-user-list
|
||||
{
|
||||
width: 260px;
|
||||
}
|
||||
.chat-application .chat-profile-sidebar
|
||||
{
|
||||
width: 260px;
|
||||
}
|
||||
.chat-application .user-profile-sidebar
|
||||
{
|
||||
right: 2.35rem;
|
||||
|
||||
width: 260px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 991.98px)
|
||||
{
|
||||
.content-right
|
||||
{
|
||||
width: 100%;
|
||||
}
|
||||
.chat-application .sidebar-content
|
||||
{
|
||||
position: fixed;
|
||||
z-index: 5;
|
||||
left: 0;
|
||||
left: -2px;
|
||||
|
||||
-webkit-transition: all .3s ease-in-out;
|
||||
-moz-transition: all .3s ease-in-out;
|
||||
-o-transition: all .3s ease-in-out;
|
||||
transition: all .3s ease-in-out;
|
||||
-webkit-transform: translateX(-110%);
|
||||
-moz-transform: translateX(-110%);
|
||||
-ms-transform: translateX(-110%);
|
||||
-o-transform: translateX(-110%);
|
||||
transform: translateX(-110%);
|
||||
}
|
||||
.chat-application .sidebar-content.show
|
||||
{
|
||||
display: block;
|
||||
|
||||
-webkit-transition: all .3s ease;
|
||||
-moz-transition: all .3s ease;
|
||||
-o-transition: all .3s ease;
|
||||
transition: all .3s ease;
|
||||
-webkit-transform: translateX(8.5%);
|
||||
-moz-transform: translateX(8.5%);
|
||||
-ms-transform: translateX(8.5%);
|
||||
-o-transform: translateX(8.5%);
|
||||
transform: translateX(8.5%);
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 349.98px)
|
||||
{
|
||||
.chat-application .sidebar-content
|
||||
{
|
||||
left: -2px !important;
|
||||
|
||||
width: 230px;
|
||||
}
|
||||
.chat-application .sidebar-content .chat-fixed-search,
|
||||
.chat-application .sidebar-content .chat-user-list
|
||||
{
|
||||
width: 230px;
|
||||
}
|
||||
.chat-application .chat-profile-sidebar
|
||||
{
|
||||
width: 230px;
|
||||
}
|
||||
.chat-application .user-profile-sidebar
|
||||
{
|
||||
width: 230px;
|
||||
}
|
||||
}
|
||||
1
public/vendor/dashboard/app-assets/css/pages/app-chat.min.css
vendored
Executable file
1
public/vendor/dashboard/app-assets/css/pages/app-chat.min.css
vendored
Executable file
File diff suppressed because one or more lines are too long
956
public/vendor/dashboard/app-assets/css/pages/app-ecommerce-shop.css
vendored
Executable file
956
public/vendor/dashboard/app-assets/css/pages/app-ecommerce-shop.css
vendored
Executable file
@@ -0,0 +1,956 @@
|
||||
/*========================================================
|
||||
DARK LAYOUT
|
||||
=========================================================*/
|
||||
.ecommerce-application .content-body
|
||||
{
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.ecommerce-application .shop-content-overlay
|
||||
{
|
||||
position: absolute;
|
||||
z-index: 0;
|
||||
top: 4.2rem;
|
||||
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
|
||||
opacity: 0;
|
||||
background: rgba(0, 0, 0, .2);
|
||||
}
|
||||
.ecommerce-application .shop-content-overlay.show
|
||||
{
|
||||
z-index: 1;
|
||||
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.ecommerce-application .sidebar-shop .sidebar-close-icon
|
||||
{
|
||||
font-size: 1.25rem;
|
||||
|
||||
position: absolute;
|
||||
z-index: 5;
|
||||
top: .25rem;
|
||||
right: .25rem;
|
||||
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.ecommerce-application .sidebar-shop .filter-heading
|
||||
{
|
||||
font-weight: 700;
|
||||
|
||||
position: relative;
|
||||
top: -7px;
|
||||
|
||||
color: #626262;
|
||||
}
|
||||
|
||||
.ecommerce-application .sidebar-shop .vs-radio-con input:checked ~ span
|
||||
{
|
||||
color: #7367f0;
|
||||
}
|
||||
|
||||
.ecommerce-application .sidebar-shop .filter-title
|
||||
{
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.ecommerce-application .sidebar-shop .range-slider.noUi-horizontal
|
||||
{
|
||||
height: .285rem;
|
||||
}
|
||||
.ecommerce-application .sidebar-shop .range-slider.noUi-horizontal .noUi-base
|
||||
{
|
||||
height: .285rem;
|
||||
}
|
||||
.ecommerce-application .sidebar-shop .range-slider.noUi-horizontal .noUi-handle
|
||||
{
|
||||
line-height: 1.15;
|
||||
|
||||
top: -.428rem;
|
||||
right: -1.071rem !important;
|
||||
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
|
||||
cursor: pointer;
|
||||
|
||||
border-width: .142rem;
|
||||
}
|
||||
.ecommerce-application .sidebar-shop .range-slider.noUi-horizontal .noUi-handle .noUi-tooltip
|
||||
{
|
||||
font-size: .75rem;
|
||||
|
||||
padding: .142rem .357rem;
|
||||
|
||||
-webkit-transform: translate(-50%, -50%);
|
||||
-moz-transform: translate(-50%, -50%);
|
||||
-ms-transform: translate(-50%, -50%);
|
||||
-o-transform: translate(-50%, -50%);
|
||||
transform: translate(-50%, -50%);
|
||||
|
||||
opacity: 0;
|
||||
color: #fff;
|
||||
border: none;
|
||||
border-radius: .357rem;
|
||||
background-color: #7367f0;
|
||||
}
|
||||
.ecommerce-application .sidebar-shop .range-slider.noUi-horizontal .noUi-handle .noUi-tooltip:before
|
||||
{
|
||||
content: '$ ';
|
||||
}
|
||||
.ecommerce-application .sidebar-shop .range-slider.noUi-horizontal .noUi-handle:hover
|
||||
{
|
||||
-webkit-transform: scale(1.2);
|
||||
-moz-transform: scale(1.2);
|
||||
-ms-transform: scale(1.2);
|
||||
-o-transform: scale(1.2);
|
||||
transform: scale(1.2);
|
||||
}
|
||||
.ecommerce-application .sidebar-shop .range-slider.noUi-horizontal .noUi-handle:active
|
||||
{
|
||||
-webkit-transition: .25s ease;
|
||||
-moz-transition: .25s ease;
|
||||
-o-transition: .25s ease;
|
||||
transition: .25s ease;
|
||||
-webkit-transform: scale(1);
|
||||
-moz-transform: scale(1);
|
||||
-ms-transform: scale(1);
|
||||
-o-transform: scale(1);
|
||||
transform: scale(1);
|
||||
|
||||
border-width: .5rem;
|
||||
}
|
||||
.ecommerce-application .sidebar-shop .range-slider.noUi-horizontal .noUi-handle:active .noUi-tooltip
|
||||
{
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.ecommerce-application .sidebar-shop .ratings-list .ratings-list-item
|
||||
{
|
||||
font-size: 1.5rem;
|
||||
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.ecommerce-application .sidebar-shop .ratings-list ~ .stars-received
|
||||
{
|
||||
margin-top: .35rem;
|
||||
}
|
||||
|
||||
.ecommerce-application .sidebar-shop
|
||||
{
|
||||
z-index: 4;
|
||||
|
||||
width: 260px;
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
.ecommerce-application .ecommerce-header-items
|
||||
{
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -moz-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
|
||||
-webkit-box-pack: justify;
|
||||
-webkit-justify-content: space-between;
|
||||
-moz-box-pack: justify;
|
||||
-ms-flex-pack: justify;
|
||||
justify-content: space-between;
|
||||
}
|
||||
.ecommerce-application .ecommerce-header-items .view-options .view-btn-option
|
||||
{
|
||||
display: inline-block;
|
||||
}
|
||||
.ecommerce-application .ecommerce-header-items .view-options .view-btn-option .btn.view-btn
|
||||
{
|
||||
margin-right: 10px;
|
||||
padding: .5rem;
|
||||
|
||||
color: #626262;
|
||||
background-color: #fff;
|
||||
-webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .14) !important;
|
||||
box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .14) !important;
|
||||
}
|
||||
.ecommerce-application .ecommerce-header-items .view-options .view-btn-option .btn.view-btn i
|
||||
{
|
||||
font-size: 1.7rem;
|
||||
}
|
||||
.ecommerce-application .ecommerce-header-items .view-options .view-btn-option .btn.view-btn.active
|
||||
{
|
||||
color: #7367f0 !important;
|
||||
}
|
||||
.ecommerce-application .ecommerce-header-items .view-options .view-btn-option .btn.view-btn.active:hover,
|
||||
.ecommerce-application .ecommerce-header-items .view-options .view-btn-option .btn.view-btn.active:active
|
||||
{
|
||||
color: #7367f0 !important;
|
||||
}
|
||||
.ecommerce-application .ecommerce-header-items .view-options .view-btn-option .btn.view-btn:hover,
|
||||
.ecommerce-application .ecommerce-header-items .view-options .view-btn-option .btn.view-btn:active
|
||||
{
|
||||
color: #626262;
|
||||
}
|
||||
.ecommerce-application .ecommerce-header-items .view-options .select2
|
||||
{
|
||||
width: auto !important;
|
||||
margin-right: 10px;
|
||||
}
|
||||
.ecommerce-application .ecommerce-header-items .view-options .select2 .select2-selection--single
|
||||
{
|
||||
border: none !important;
|
||||
border-radius: 5px;
|
||||
-webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .14);
|
||||
box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .14);
|
||||
}
|
||||
.ecommerce-application .ecommerce-header-items .result-toggler
|
||||
{
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -moz-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
|
||||
-webkit-box-align: end;
|
||||
-webkit-align-items: flex-end;
|
||||
-moz-box-align: end;
|
||||
-ms-flex-align: end;
|
||||
align-items: flex-end;
|
||||
}
|
||||
.ecommerce-application .ecommerce-header-items .result-toggler .shop-sidebar-toggler
|
||||
{
|
||||
font-size: 1.7rem;
|
||||
|
||||
margin-left: -6px;
|
||||
padding-left: 0;
|
||||
}
|
||||
.ecommerce-application .ecommerce-header-items .result-toggler .shop-sidebar-toggler:active,
|
||||
.ecommerce-application .ecommerce-header-items .result-toggler .shop-sidebar-toggler:focus
|
||||
{
|
||||
outline: 0;
|
||||
}
|
||||
.ecommerce-application .ecommerce-header-items .result-toggler .shop-sidebar-toggler .navbar-toggler-icon i
|
||||
{
|
||||
vertical-align: middle;
|
||||
|
||||
color: #626262;
|
||||
}
|
||||
.ecommerce-application .ecommerce-header-items .result-toggler .search-results
|
||||
{
|
||||
font-weight: 700;
|
||||
|
||||
display: inline-block;
|
||||
|
||||
color: #626262;
|
||||
}
|
||||
|
||||
.ecommerce-application .search-product
|
||||
{
|
||||
font-size: 1.2rem;
|
||||
|
||||
height: 48px;
|
||||
padding-left: 1rem;
|
||||
|
||||
border: none;
|
||||
-webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .14);
|
||||
box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .14);
|
||||
}
|
||||
.ecommerce-application .search-product ~ .form-control-position
|
||||
{
|
||||
top: 10px;
|
||||
right: 10px;
|
||||
}
|
||||
.ecommerce-application .search-product ~ .form-control-position i
|
||||
{
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
.ecommerce-application .search-product::-webkit-input-placeholder
|
||||
{
|
||||
font-size: .95rem;
|
||||
}
|
||||
.ecommerce-application .search-product:-moz-placeholder
|
||||
{
|
||||
font-size: .95rem;
|
||||
}
|
||||
.ecommerce-application .search-product::-moz-placeholder
|
||||
{
|
||||
font-size: .95rem;
|
||||
}
|
||||
.ecommerce-application .search-product:-ms-input-placeholder
|
||||
{
|
||||
font-size: .95rem;
|
||||
}
|
||||
.ecommerce-application .search-product::placeholder
|
||||
{
|
||||
font-size: .95rem;
|
||||
}
|
||||
|
||||
.ecommerce-application .ecommerce-card:hover
|
||||
{
|
||||
-webkit-transform: translateY(-5px);
|
||||
-moz-transform: translateY(-5px);
|
||||
-ms-transform: translateY(-5px);
|
||||
-o-transform: translateY(-5px);
|
||||
transform: translateY(-5px);
|
||||
|
||||
-webkit-box-shadow: 0 4px 25px 0 rgba(0, 0, 0, .25);
|
||||
box-shadow: 0 4px 25px 0 rgba(0, 0, 0, .25);
|
||||
}
|
||||
|
||||
.ecommerce-application .ecommerce-card .item-price
|
||||
{
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.ecommerce-application .ecommerce-card .item-rating i
|
||||
{
|
||||
margin-left: .25rem;
|
||||
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.ecommerce-application .ecommerce-card .item-name
|
||||
{
|
||||
font-weight: 600;
|
||||
|
||||
color: #2c2c2c;
|
||||
}
|
||||
|
||||
.ecommerce-application .ecommerce-card .item-description
|
||||
{
|
||||
font-size: .875rem;
|
||||
}
|
||||
|
||||
.ecommerce-application .ecommerce-card .wishlist,
|
||||
.ecommerce-application .ecommerce-card .cart
|
||||
{
|
||||
font-size: .875rem;
|
||||
font-weight: 600;
|
||||
|
||||
padding: .8rem 1rem;
|
||||
|
||||
cursor: pointer;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
.ecommerce-application .ecommerce-card .wishlist i,
|
||||
.ecommerce-application .ecommerce-card .cart i
|
||||
{
|
||||
font-size: 1rem;
|
||||
|
||||
margin-right: .25rem;
|
||||
}
|
||||
|
||||
.ecommerce-application .ecommerce-card .wishlist
|
||||
{
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
|
||||
color: #2c2c2c;
|
||||
background-color: #f6f6f6;
|
||||
}
|
||||
.ecommerce-application .ecommerce-card .wishlist.added i
|
||||
{
|
||||
color: #ea5455;
|
||||
}
|
||||
|
||||
.ecommerce-application .ecommerce-card .cart
|
||||
{
|
||||
color: #fff;
|
||||
background-color: #7367f0;
|
||||
}
|
||||
.ecommerce-application .ecommerce-card .cart .view-in-cart
|
||||
{
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.ecommerce-application .grid-view,
|
||||
.ecommerce-application .list-view
|
||||
{
|
||||
margin-top: .7rem;
|
||||
}
|
||||
|
||||
.ecommerce-application .grid-view
|
||||
{
|
||||
display: grid;
|
||||
|
||||
grid-template-columns: 1fr 1fr 1fr;
|
||||
-webkit-column-gap: 28px;
|
||||
-moz-column-gap: 28px;
|
||||
column-gap: 28px;
|
||||
}
|
||||
.ecommerce-application .grid-view .ecommerce-card
|
||||
{
|
||||
overflow: hidden;
|
||||
}
|
||||
.ecommerce-application .grid-view .ecommerce-card .card-content .item-img
|
||||
{
|
||||
min-height: 15.85rem;
|
||||
padding-top: .5rem;
|
||||
}
|
||||
.ecommerce-application .grid-view .ecommerce-card .card-content .item-wrapper
|
||||
{
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -moz-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
|
||||
-webkit-box-pack: justify;
|
||||
-webkit-justify-content: space-between;
|
||||
-moz-box-pack: justify;
|
||||
-ms-flex-pack: justify;
|
||||
justify-content: space-between;
|
||||
}
|
||||
.ecommerce-application .grid-view .ecommerce-card .card-content .item-wrapper .item-price
|
||||
{
|
||||
position: relative;
|
||||
top: 5px;
|
||||
}
|
||||
.ecommerce-application .grid-view .ecommerce-card .card-content .item-wrapper .shipping
|
||||
{
|
||||
display: none;
|
||||
}
|
||||
.ecommerce-application .grid-view .ecommerce-card .card-content .item-company
|
||||
{
|
||||
display: none;
|
||||
}
|
||||
.ecommerce-application .grid-view .ecommerce-card .card-content .item-options
|
||||
{
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -moz-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
|
||||
-webkit-flex-wrap: wrap;
|
||||
-ms-flex-wrap: wrap;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
.ecommerce-application .grid-view .ecommerce-card .card-content .item-options .cart,
|
||||
.ecommerce-application .grid-view .ecommerce-card .card-content .item-options .wishlist
|
||||
{
|
||||
-webkit-box-flex: 1;
|
||||
-webkit-flex-grow: 1;
|
||||
-moz-box-flex: 1;
|
||||
-ms-flex-positive: 1;
|
||||
flex-grow: 1;
|
||||
}
|
||||
.ecommerce-application .grid-view .ecommerce-card .card-content .item-options .wishlist
|
||||
{
|
||||
padding: .8rem 2rem;
|
||||
}
|
||||
.ecommerce-application .grid-view .ecommerce-card .card-content .item-options .item-wrapper .item-rating
|
||||
{
|
||||
display: none;
|
||||
}
|
||||
.ecommerce-application .grid-view .ecommerce-card .card-content .item-options .item-wrapper .item-price
|
||||
{
|
||||
display: none;
|
||||
}
|
||||
.ecommerce-application .grid-view .ecommerce-card .card-content .item-name
|
||||
{
|
||||
margin-top: 1rem;
|
||||
}
|
||||
.ecommerce-application .grid-view .ecommerce-card .card-content .item-name,
|
||||
.ecommerce-application .grid-view .ecommerce-card .card-content .item-description
|
||||
{
|
||||
overflow: hidden;
|
||||
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
.ecommerce-application .grid-view .ecommerce-card .card-body
|
||||
{
|
||||
padding: 1rem;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.ecommerce-application .list-view
|
||||
{
|
||||
display: grid;
|
||||
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
.ecommerce-application .list-view .ecommerce-card
|
||||
{
|
||||
overflow: hidden;
|
||||
}
|
||||
.ecommerce-application .list-view .ecommerce-card .card-content
|
||||
{
|
||||
display: grid;
|
||||
|
||||
grid-template-columns: 1fr 2fr 1fr;
|
||||
}
|
||||
.ecommerce-application .list-view .ecommerce-card .card-content .item-img
|
||||
{
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -moz-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
|
||||
height: 100%;
|
||||
padding-right: 1rem;
|
||||
padding-left: 1rem;
|
||||
|
||||
-webkit-align-self: center;
|
||||
-ms-flex-item-align: center;
|
||||
align-self: center;
|
||||
-webkit-box-pack: center;
|
||||
-webkit-justify-content: center;
|
||||
-moz-box-pack: center;
|
||||
-ms-flex-pack: center;
|
||||
justify-content: center;
|
||||
-webkit-box-align: center;
|
||||
-webkit-align-items: center;
|
||||
-moz-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
}
|
||||
.ecommerce-application .list-view .ecommerce-card .card-content .card-body
|
||||
{
|
||||
padding: 1rem;
|
||||
padding-bottom: .5rem;
|
||||
|
||||
border-right: 1px solid #dae1e7;
|
||||
}
|
||||
.ecommerce-application .list-view .ecommerce-card .card-content .card-body .item-rating
|
||||
{
|
||||
display: none;
|
||||
}
|
||||
.ecommerce-application .list-view .ecommerce-card .card-content .card-body .item-price
|
||||
{
|
||||
display: none;
|
||||
}
|
||||
.ecommerce-application .list-view .ecommerce-card .card-content .card-body .item-name
|
||||
{
|
||||
font-size: .95rem;
|
||||
|
||||
margin-bottom: .25rem;
|
||||
}
|
||||
.ecommerce-application .list-view .ecommerce-card .card-content .card-body .item-company
|
||||
{
|
||||
font-size: .875rem;
|
||||
|
||||
display: block;
|
||||
|
||||
cursor: pointer;
|
||||
}
|
||||
.ecommerce-application .list-view .ecommerce-card .card-content .card-body .item-company .company-name
|
||||
{
|
||||
color: #7367f0;
|
||||
}
|
||||
.ecommerce-application .list-view .ecommerce-card .card-content .item-options
|
||||
{
|
||||
padding: 1rem;
|
||||
}
|
||||
.ecommerce-application .list-view .ecommerce-card .card-content .item-options .item-wrapper
|
||||
{
|
||||
position: relative;
|
||||
}
|
||||
.ecommerce-application .list-view .ecommerce-card .card-content .item-options .item-wrapper .item-rating
|
||||
{
|
||||
position: absolute;
|
||||
right: 0;
|
||||
}
|
||||
.ecommerce-application .list-view .ecommerce-card .card-content .item-options .item-wrapper .item-cost .item-price
|
||||
{
|
||||
font-size: 16px;
|
||||
|
||||
position: relative;
|
||||
top: 55px;
|
||||
}
|
||||
.ecommerce-application .list-view .ecommerce-card .card-content .item-options .shipping
|
||||
{
|
||||
position: relative;
|
||||
top: 50px;
|
||||
|
||||
color: #b8c2cc;
|
||||
}
|
||||
.ecommerce-application .list-view .ecommerce-card .card-content .item-options .wishlist
|
||||
{
|
||||
margin-top: 84px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.ecommerce-application .list-view .ecommerce-card .card-content .item-options .wishlist,
|
||||
.ecommerce-application .list-view .ecommerce-card .card-content .item-options .cart
|
||||
{
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.ecommerce-application .checkout-items .ecommerce-card .card-content .item-company
|
||||
{
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.ecommerce-application .checkout-items .ecommerce-card .card-content .stock-status-in
|
||||
{
|
||||
font-size: .875rem;
|
||||
font-weight: 400;
|
||||
|
||||
color: #28c76f;
|
||||
}
|
||||
|
||||
.ecommerce-application .checkout-items .ecommerce-card .card-content .stock-status-out
|
||||
{
|
||||
font-size: .875rem;
|
||||
font-weight: 400;
|
||||
|
||||
color: #ea5455;
|
||||
}
|
||||
|
||||
.ecommerce-application .checkout-items .ecommerce-card .card-content .item-quantity
|
||||
{
|
||||
font-size: .875rem;
|
||||
font-weight: 700;
|
||||
}
|
||||
.ecommerce-application .checkout-items .ecommerce-card .card-content .item-quantity .quantity-title
|
||||
{
|
||||
margin-bottom: .5rem;
|
||||
}
|
||||
.ecommerce-application .checkout-items .ecommerce-card .card-content .item-quantity .quantity-counter-wrapper
|
||||
{
|
||||
margin-left: -10px;
|
||||
}
|
||||
|
||||
.ecommerce-application .checkout-items .ecommerce-card .card-content .delivery-date,
|
||||
.ecommerce-application .checkout-items .ecommerce-card .card-content .offers
|
||||
{
|
||||
font-size: 1rem;
|
||||
font-weight: 500;
|
||||
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.ecommerce-application .checkout-items .ecommerce-card .card-content .delivery-date
|
||||
{
|
||||
margin-top: 1.8rem;
|
||||
|
||||
color: #b8c2cc;
|
||||
}
|
||||
|
||||
.ecommerce-application .checkout-items .ecommerce-card .card-content .offers
|
||||
{
|
||||
color: #28c76f;
|
||||
}
|
||||
|
||||
.ecommerce-application .checkout-options .options-title
|
||||
{
|
||||
color: #b8c2cc;
|
||||
}
|
||||
|
||||
.ecommerce-application .checkout-options .coupons
|
||||
{
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -moz-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
|
||||
-webkit-box-pack: justify;
|
||||
-webkit-justify-content: space-between;
|
||||
-moz-box-pack: justify;
|
||||
-ms-flex-pack: justify;
|
||||
justify-content: space-between;
|
||||
}
|
||||
.ecommerce-application .checkout-options .coupons .coupons-title
|
||||
{
|
||||
font-weight: 600;
|
||||
}
|
||||
.ecommerce-application .checkout-options .coupons .coupons-title p
|
||||
{
|
||||
margin-bottom: .5rem;
|
||||
}
|
||||
.ecommerce-application .checkout-options .coupons .apply-coupon
|
||||
{
|
||||
font-weight: 500;
|
||||
|
||||
cursor: pointer;
|
||||
|
||||
color: #7367f0;
|
||||
}
|
||||
.ecommerce-application .checkout-options .coupons .apply-coupon p
|
||||
{
|
||||
margin-bottom: .5rem;
|
||||
}
|
||||
|
||||
.ecommerce-application .checkout-options .price-details
|
||||
{
|
||||
font-weight: 600;
|
||||
|
||||
margin-bottom: .75rem;
|
||||
}
|
||||
|
||||
.ecommerce-application .checkout-options .detail
|
||||
{
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -moz-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
|
||||
margin-bottom: .75rem;
|
||||
|
||||
-webkit-box-pack: justify;
|
||||
-webkit-justify-content: space-between;
|
||||
-moz-box-pack: justify;
|
||||
-ms-flex-pack: justify;
|
||||
justify-content: space-between;
|
||||
}
|
||||
.ecommerce-application .checkout-options .detail .detail-title
|
||||
{
|
||||
color: #b8c2cc;
|
||||
}
|
||||
.ecommerce-application .checkout-options .detail .detail-title.detail-total
|
||||
{
|
||||
font-weight: 600;
|
||||
|
||||
color: #626262;
|
||||
}
|
||||
.ecommerce-application .checkout-options .detail .detail-amt.discount-amt
|
||||
{
|
||||
color: #28c76f;
|
||||
}
|
||||
.ecommerce-application .checkout-options .detail .detail-amt.emi-details
|
||||
{
|
||||
cursor: pointer;
|
||||
|
||||
color: #7367f0;
|
||||
}
|
||||
.ecommerce-application .checkout-options .detail .detail-amt.total-amt
|
||||
{
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.ecommerce-application .payment-type .gift-card
|
||||
{
|
||||
cursor: pointer;
|
||||
}
|
||||
.ecommerce-application .payment-type .gift-card i
|
||||
{
|
||||
position: relative;
|
||||
top: 3px;
|
||||
}
|
||||
|
||||
.ecommerce-application .wizard.checkout-tab-steps .steps ul li.error > a
|
||||
{
|
||||
color: #7367f0;
|
||||
}
|
||||
.ecommerce-application .wizard.checkout-tab-steps .steps ul li.error > a .step
|
||||
{
|
||||
border-color: #7367f0;
|
||||
background-color: #7367f0;
|
||||
}
|
||||
|
||||
.ecommerce-application .wizard.checkout-tab-steps #checkout-address .form-group .error
|
||||
{
|
||||
color: #ea5455;
|
||||
}
|
||||
|
||||
@media (max-width: 1200px)
|
||||
{
|
||||
.ecommerce-application .app-content
|
||||
{
|
||||
overflow: scroll;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 991.98px)
|
||||
{
|
||||
.ecommerce-application .sidebar-left .sidebar
|
||||
{
|
||||
position: absolute;
|
||||
top: 14rem;
|
||||
}
|
||||
.ecommerce-application .sidebar-left .sidebar .card
|
||||
{
|
||||
padding-bottom: 100vh;
|
||||
|
||||
border-radius: 0;
|
||||
}
|
||||
.ecommerce-application .sidebar-left .sidebar .card .card-body
|
||||
{
|
||||
padding-bottom: 100%;
|
||||
}
|
||||
.ecommerce-application .sidebar-left .sidebar .sidebar-shop
|
||||
{
|
||||
position: absolute;
|
||||
|
||||
-webkit-transition: all .25s ease;
|
||||
-moz-transition: all .25s ease;
|
||||
-o-transition: all .25s ease;
|
||||
transition: all .25s ease;
|
||||
-webkit-transform: translateX(-112%);
|
||||
-moz-transform: translateX(-112%);
|
||||
-ms-transform: translateX(-112%);
|
||||
-o-transform: translateX(-112%);
|
||||
transform: translateX(-112%);
|
||||
}
|
||||
.ecommerce-application .sidebar-left .sidebar .sidebar-shop.show
|
||||
{
|
||||
-webkit-transition: all .25s ease;
|
||||
-moz-transition: all .25s ease;
|
||||
-o-transition: all .25s ease;
|
||||
transition: all .25s ease;
|
||||
-webkit-transform: translateX(0);
|
||||
-moz-transform: translateX(0);
|
||||
-ms-transform: translateX(0);
|
||||
-o-transform: translateX(0);
|
||||
transform: translateX(0);
|
||||
}
|
||||
.ecommerce-application .ecommerce-header-items .result-toggler .shop-sidebar-toggler
|
||||
{
|
||||
position: relative;
|
||||
top: 1.2rem;
|
||||
}
|
||||
.ecommerce-application .grid-view
|
||||
{
|
||||
grid-template-columns: 1fr 1fr;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 991.98px)
|
||||
{
|
||||
.ecommerce-application .ecommerce-header-items .result-toggler .search-results
|
||||
{
|
||||
display: none;
|
||||
}
|
||||
.ecommerce-application .ecommerce-header-items .result-toggler .shop-sidebar-toggler
|
||||
{
|
||||
top: .5rem;
|
||||
}
|
||||
.ecommerce-application .ecommerce-header-items .sidebar-shop
|
||||
{
|
||||
z-index: 5;
|
||||
|
||||
-webkit-transition: all .2s ease;
|
||||
-moz-transition: all .2s ease;
|
||||
-o-transition: all .2s ease;
|
||||
transition: all .2s ease;
|
||||
-webkit-transform: translateX(-123%);
|
||||
-moz-transform: translateX(-123%);
|
||||
-ms-transform: translateX(-123%);
|
||||
-o-transform: translateX(-123%);
|
||||
transform: translateX(-123%);
|
||||
}
|
||||
.ecommerce-application .ecommerce-header-items .sidebar-shop.show
|
||||
{
|
||||
position: absolute;
|
||||
|
||||
-webkit-transition: all .2s ease;
|
||||
-moz-transition: all .2s ease;
|
||||
-o-transition: all .2s ease;
|
||||
transition: all .2s ease;
|
||||
-webkit-transform: translateX(0);
|
||||
-moz-transform: translateX(0);
|
||||
-ms-transform: translateX(0);
|
||||
-o-transform: translateX(0);
|
||||
transform: translateX(0);
|
||||
}
|
||||
.ecommerce-application .list-view .ecommerce-card .card-content
|
||||
{
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
.ecommerce-application .list-view .ecommerce-card .card-content .item-img
|
||||
{
|
||||
padding-top: 2rem;
|
||||
padding-bottom: 2rem;
|
||||
}
|
||||
.ecommerce-application .list-view .ecommerce-card .card-content .card-body
|
||||
{
|
||||
border: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 576px)
|
||||
{
|
||||
.ecommerce-application .sidebar-shop
|
||||
{
|
||||
top: 0;
|
||||
}
|
||||
.ecommerce-application .grid-view
|
||||
{
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 992px)
|
||||
{
|
||||
.ecommerce-application .ecommerce-header-items .shop-sidebar-toggler
|
||||
{
|
||||
display: none;
|
||||
}
|
||||
.ecommerce-application .wishlist-items.grid-view
|
||||
{
|
||||
grid-template-columns: 1fr 1fr 1fr 1fr;
|
||||
}
|
||||
.ecommerce-application .product-checkout.list-view
|
||||
{
|
||||
grid-template-columns: 2fr 1fr;
|
||||
-webkit-column-gap: 20px;
|
||||
-moz-column-gap: 20px;
|
||||
column-gap: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 360px)
|
||||
{
|
||||
.ecommerce-application .sidebar-shop
|
||||
{
|
||||
top: 1.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none)
|
||||
{
|
||||
.ecommerce-application .grid-view
|
||||
{
|
||||
display: block;
|
||||
}
|
||||
.ecommerce-application .grid-view .ecommerce-card
|
||||
{
|
||||
float: left;
|
||||
|
||||
width: 31%;
|
||||
margin-right: 1%;
|
||||
margin-left: 1%;
|
||||
}
|
||||
.ecommerce-application .list-view
|
||||
{
|
||||
display: block;
|
||||
}
|
||||
.ecommerce-application .list-view .ecommerce-card .card-content
|
||||
{
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -moz-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
}
|
||||
.ecommerce-application .list-view .ecommerce-card .card-content .item-options .wishlist,
|
||||
.ecommerce-application .list-view .ecommerce-card .card-content .item-options .cart
|
||||
{
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -moz-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
|
||||
padding: .8rem 3rem;
|
||||
|
||||
-webkit-box-pack: center;
|
||||
-webkit-justify-content: center;
|
||||
-moz-box-pack: center;
|
||||
-ms-flex-pack: center;
|
||||
justify-content: center;
|
||||
}
|
||||
.ecommerce-application #ecommerce-pagination .row
|
||||
{
|
||||
clear: both;
|
||||
}
|
||||
}
|
||||
1
public/vendor/dashboard/app-assets/css/pages/app-ecommerce-shop.min.css
vendored
Executable file
1
public/vendor/dashboard/app-assets/css/pages/app-ecommerce-shop.min.css
vendored
Executable file
File diff suppressed because one or more lines are too long
35681
public/vendor/dashboard/app-assets/css/pages/app-email.css
vendored
Executable file
35681
public/vendor/dashboard/app-assets/css/pages/app-email.css
vendored
Executable file
File diff suppressed because it is too large
Load Diff
1
public/vendor/dashboard/app-assets/css/pages/app-email.min.css
vendored
Executable file
1
public/vendor/dashboard/app-assets/css/pages/app-email.min.css
vendored
Executable file
File diff suppressed because one or more lines are too long
35441
public/vendor/dashboard/app-assets/css/pages/app-todo.css
vendored
Executable file
35441
public/vendor/dashboard/app-assets/css/pages/app-todo.css
vendored
Executable file
File diff suppressed because it is too large
Load Diff
1
public/vendor/dashboard/app-assets/css/pages/app-todo.min.css
vendored
Executable file
1
public/vendor/dashboard/app-assets/css/pages/app-todo.min.css
vendored
Executable file
File diff suppressed because one or more lines are too long
48
public/vendor/dashboard/app-assets/css/pages/app-users.css
vendored
Executable file
48
public/vendor/dashboard/app-assets/css/pages/app-users.css
vendored
Executable file
@@ -0,0 +1,48 @@
|
||||
.rslt-btn button
|
||||
{
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.table-action
|
||||
{
|
||||
padding: 4px 30px;
|
||||
}
|
||||
|
||||
div.dataTables_wrapper div.dataTables_filter label
|
||||
{
|
||||
position: relative;
|
||||
}
|
||||
div.dataTables_wrapper div.dataTables_filter label i
|
||||
{
|
||||
position: absolute;
|
||||
top: 7px;
|
||||
right: 9px;
|
||||
}
|
||||
|
||||
div.dataTables_wrapper div .dataTables_filter select,
|
||||
div.dataTables_wrapper div .dataTables_length select
|
||||
{
|
||||
padding: 0 1.5rem;
|
||||
}
|
||||
|
||||
div.dataTables_wrapper div .dataTables_filter input
|
||||
{
|
||||
border-radius: 15px;
|
||||
}
|
||||
|
||||
table.dataTable tbody td.select-checkbox:before,
|
||||
table.dataTable tbody td.select-checkbox:after
|
||||
{
|
||||
top: 2.4em;
|
||||
}
|
||||
|
||||
table.dataTable tbody th.select-checkbox:before,
|
||||
table.dataTable tbody th.select-checkbox:after
|
||||
{
|
||||
top: 2.4em;
|
||||
}
|
||||
|
||||
table.dataTable tbody .badge
|
||||
{
|
||||
padding: 10px 12px;
|
||||
}
|
||||
1
public/vendor/dashboard/app-assets/css/pages/app-users.min.css
vendored
Executable file
1
public/vendor/dashboard/app-assets/css/pages/app-users.min.css
vendored
Executable file
@@ -0,0 +1 @@
|
||||
.rslt-btn button{font-size:13px}.table-action{padding:4px 30px}div.dataTables_wrapper div.dataTables_filter label{position:relative}div.dataTables_wrapper div.dataTables_filter label i{position:absolute;top:7px;right:9px}div.dataTables_wrapper div .dataTables_filter select,div.dataTables_wrapper div .dataTables_length select{padding:0 1.5rem}div.dataTables_wrapper div .dataTables_filter input{border-radius:15px}table.dataTable tbody td.select-checkbox:after,table.dataTable tbody td.select-checkbox:before,table.dataTable tbody th.select-checkbox:after,table.dataTable tbody th.select-checkbox:before{top:2.4em}table.dataTable tbody .badge{padding:10px 12px}
|
||||
24
public/vendor/dashboard/app-assets/css/pages/authentication.css
vendored
Executable file
24
public/vendor/dashboard/app-assets/css/pages/authentication.css
vendored
Executable file
@@ -0,0 +1,24 @@
|
||||
/*========================================================
|
||||
DARK LAYOUT
|
||||
=========================================================*/
|
||||
.bg-authentication
|
||||
{
|
||||
background-color: #eff2f7;
|
||||
}
|
||||
.bg-authentication .login-footer
|
||||
{
|
||||
padding: 0rem 1.5rem .5rem;
|
||||
}
|
||||
.bg-authentication .login-footer .footer-btn .btn
|
||||
{
|
||||
margin: 1rem 1rem 1rem 0rem;
|
||||
padding: .9rem 1.2rem !important;
|
||||
}
|
||||
|
||||
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none)
|
||||
{
|
||||
.bg-authentication
|
||||
{
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
1
public/vendor/dashboard/app-assets/css/pages/authentication.min.css
vendored
Executable file
1
public/vendor/dashboard/app-assets/css/pages/authentication.min.css
vendored
Executable file
@@ -0,0 +1 @@
|
||||
.bg-authentication{background-color:#eff2f7}.bg-authentication .login-footer{padding:0 1.5rem .5rem}.bg-authentication .login-footer .footer-btn .btn{margin:1rem 1rem 1rem 0;padding:.9rem 1.2rem!important}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.bg-authentication{width:100%}}
|
||||
67
public/vendor/dashboard/app-assets/css/pages/card-analytics.css
vendored
Executable file
67
public/vendor/dashboard/app-assets/css/pages/card-analytics.css
vendored
Executable file
@@ -0,0 +1,67 @@
|
||||
/*========================================================
|
||||
DARK LAYOUT
|
||||
=========================================================*/
|
||||
.customer-info.list-group .list-group-item:last-child
|
||||
{
|
||||
border-bottom-right-radius: .5rem;
|
||||
border-bottom-left-radius: .5rem;
|
||||
}
|
||||
|
||||
.customer-info.list-group .list-group-item .series-info i
|
||||
{
|
||||
top: 0;
|
||||
|
||||
margin-right: .3rem;
|
||||
}
|
||||
|
||||
.avg-sessions .progress
|
||||
{
|
||||
margin-top: .5rem;
|
||||
}
|
||||
|
||||
.analytics-list.list-group .list-group-item
|
||||
{
|
||||
border: 0;
|
||||
}
|
||||
.analytics-list.list-group .list-group-item:first-child
|
||||
{
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 0;
|
||||
}
|
||||
.analytics-list.list-group .list-group-item .btn
|
||||
{
|
||||
display: none;
|
||||
}
|
||||
.analytics-list.list-group .list-group-item:hover .btn
|
||||
{
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.chart-dropdown .btn
|
||||
{
|
||||
font-size: .8rem;
|
||||
font-weight: 500;
|
||||
}
|
||||
.chart-dropdown .btn:after
|
||||
{
|
||||
position: relative;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 992px) and (min-width: 768px)
|
||||
{
|
||||
.analytics-list .float-left,
|
||||
.analytics-list .float-right
|
||||
{
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none)
|
||||
{
|
||||
#dashboard-analytics .avatar .avatar-content,
|
||||
#statistics-card .avatar .avatar-content
|
||||
{
|
||||
padding: 0 !important;
|
||||
}
|
||||
}
|
||||
1
public/vendor/dashboard/app-assets/css/pages/card-analytics.min.css
vendored
Executable file
1
public/vendor/dashboard/app-assets/css/pages/card-analytics.min.css
vendored
Executable file
@@ -0,0 +1 @@
|
||||
.customer-info.list-group .list-group-item:last-child{border-bottom-right-radius:.5rem;border-bottom-left-radius:.5rem}.customer-info.list-group .list-group-item .series-info i{top:0;margin-right:.3rem}.avg-sessions .progress{margin-top:.5rem}.analytics-list.list-group .list-group-item{border:0}.analytics-list.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.analytics-list.list-group .list-group-item .btn{display:none}.analytics-list.list-group .list-group-item:hover .btn{display:inline-block}.chart-dropdown .btn{font-size:.8rem;font-weight:500}.chart-dropdown .btn:after{position:relative;left:0}@media only screen and (max-width:992px) and (min-width:768px){.analytics-list .float-left,.analytics-list .float-right{display:block}}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){#dashboard-analytics .avatar .avatar-content,#statistics-card .avatar .avatar-content{padding:0!important}}
|
||||
16
public/vendor/dashboard/app-assets/css/pages/colors.css
vendored
Executable file
16
public/vendor/dashboard/app-assets/css/pages/colors.css
vendored
Executable file
@@ -0,0 +1,16 @@
|
||||
/*========================================================
|
||||
DARK LAYOUT
|
||||
=========================================================*/
|
||||
.colors-list li
|
||||
{
|
||||
padding: .4rem;
|
||||
}
|
||||
.colors-list li i
|
||||
{
|
||||
font-size: 1.2rem;
|
||||
|
||||
position: relative;
|
||||
top: 2px;
|
||||
|
||||
margin-right: .25rem;
|
||||
}
|
||||
1
public/vendor/dashboard/app-assets/css/pages/colors.min.css
vendored
Executable file
1
public/vendor/dashboard/app-assets/css/pages/colors.min.css
vendored
Executable file
@@ -0,0 +1 @@
|
||||
.colors-list li{padding:.4rem}.colors-list li i{font-size:1.2rem;position:relative;top:2px;margin-right:.25rem}
|
||||
15
public/vendor/dashboard/app-assets/css/pages/coming-soon.css
vendored
Executable file
15
public/vendor/dashboard/app-assets/css/pages/coming-soon.css
vendored
Executable file
@@ -0,0 +1,15 @@
|
||||
/*========== Coming Soon Background Image =========*/
|
||||
.clockCard
|
||||
{
|
||||
float: left;
|
||||
}
|
||||
|
||||
.getting-started
|
||||
{
|
||||
font-size: 3rem;
|
||||
}
|
||||
|
||||
.lead
|
||||
{
|
||||
font-size: 1rem;
|
||||
}
|
||||
1
public/vendor/dashboard/app-assets/css/pages/coming-soon.min.css
vendored
Executable file
1
public/vendor/dashboard/app-assets/css/pages/coming-soon.min.css
vendored
Executable file
@@ -0,0 +1 @@
|
||||
.clockCard{float:left}.getting-started{font-size:3rem}.lead{font-size:1rem}
|
||||
58
public/vendor/dashboard/app-assets/css/pages/dashboard-analytics.css
vendored
Executable file
58
public/vendor/dashboard/app-assets/css/pages/dashboard-analytics.css
vendored
Executable file
@@ -0,0 +1,58 @@
|
||||
/*========================================================
|
||||
DARK LAYOUT
|
||||
=========================================================*/
|
||||
#dashboard-analytics .img-left
|
||||
{
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
|
||||
width: 200px;
|
||||
}
|
||||
|
||||
#dashboard-analytics .img-right
|
||||
{
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
|
||||
width: 175px;
|
||||
}
|
||||
|
||||
#dashboard-analytics .bg-analytics
|
||||
{
|
||||
background: -webkit-linear-gradient(332deg, #7367f0, rgba(115, 103, 240, .7));
|
||||
background: -moz-linear-gradient(332deg, #7367f0, rgba(115, 103, 240, .7));
|
||||
background: -o-linear-gradient(332deg, #7367f0, rgba(115, 103, 240, .7));
|
||||
background: linear-gradient(118deg, #7367f0, rgba(115, 103, 240, .7));
|
||||
}
|
||||
#dashboard-analytics .bg-analytics .avatar
|
||||
{
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
#dashboard-analytics table tr th:first-child,
|
||||
#dashboard-analytics table tr td:first-child
|
||||
{
|
||||
padding-left: 2rem;
|
||||
}
|
||||
|
||||
#dashboard-analytics table tr th:last-child,
|
||||
#dashboard-analytics table tr td:last-child
|
||||
{
|
||||
padding-right: 2rem;
|
||||
}
|
||||
|
||||
#dashboard-analytics table td
|
||||
{
|
||||
padding: .75rem;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 576px)
|
||||
{
|
||||
#dashboard-analytics .img-left,
|
||||
#dashboard-analytics .img-right
|
||||
{
|
||||
width: 140px;
|
||||
}
|
||||
}
|
||||
1
public/vendor/dashboard/app-assets/css/pages/dashboard-analytics.min.css
vendored
Executable file
1
public/vendor/dashboard/app-assets/css/pages/dashboard-analytics.min.css
vendored
Executable file
@@ -0,0 +1 @@
|
||||
#dashboard-analytics .img-left{position:absolute;top:0;left:0;width:200px}#dashboard-analytics .img-right{position:absolute;top:0;right:0;width:175px}#dashboard-analytics .bg-analytics{background:-webkit-linear-gradient(332deg,#7367f0,rgba(115,103,240,.7));background:-moz-linear-gradient(332deg,#7367f0,rgba(115,103,240,.7));background:-o-linear-gradient(332deg,#7367f0,rgba(115,103,240,.7));background:linear-gradient(118deg,#7367f0,rgba(115,103,240,.7))}#dashboard-analytics .bg-analytics .avatar{margin-bottom:2rem}#dashboard-analytics table tr td:first-child,#dashboard-analytics table tr th:first-child{padding-left:2rem}#dashboard-analytics table tr td:last-child,#dashboard-analytics table tr th:last-child{padding-right:2rem}#dashboard-analytics table td{padding:.75rem}@media only screen and (max-width:576px){#dashboard-analytics .img-left,#dashboard-analytics .img-right{width:140px}}
|
||||
72
public/vendor/dashboard/app-assets/css/pages/dashboard-ecommerce.css
vendored
Executable file
72
public/vendor/dashboard/app-assets/css/pages/dashboard-ecommerce.css
vendored
Executable file
@@ -0,0 +1,72 @@
|
||||
/*========================================================
|
||||
DARK LAYOUT
|
||||
=========================================================*/
|
||||
.chat-application .chat-app-window .user-chats
|
||||
{
|
||||
position: relative;
|
||||
|
||||
height: 415px;
|
||||
padding: 10px 20px;
|
||||
|
||||
text-align: center;
|
||||
}
|
||||
.chat-application .chat-app-window .user-chats .chats
|
||||
{
|
||||
padding: 0;
|
||||
}
|
||||
.chat-application .chat-app-window .user-chats .chats .chat-body
|
||||
{
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
|
||||
margin: 10px 30px 0 0;
|
||||
}
|
||||
.chat-application .chat-app-window .user-chats .chats .chat-body .chat-content
|
||||
{
|
||||
display: block;
|
||||
float: right;
|
||||
clear: both;
|
||||
|
||||
margin: 0 20px 10px 0;
|
||||
padding: .75rem 1rem;
|
||||
|
||||
text-align: left;
|
||||
|
||||
color: #fff;
|
||||
border-radius: .5rem;
|
||||
background: -webkit-linear-gradient(332deg, #7367f0, rgba(115, 103, 240, .7));
|
||||
background: -moz-linear-gradient(332deg, #7367f0, rgba(115, 103, 240, .7));
|
||||
background: -o-linear-gradient(332deg, #7367f0, rgba(115, 103, 240, .7));
|
||||
background: linear-gradient(118deg, #7367f0, rgba(115, 103, 240, .7));
|
||||
-webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .12), 0 2px 4px 0 rgba(0, 0, 0, .08);
|
||||
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .12), 0 2px 4px 0 rgba(0, 0, 0, .08);
|
||||
}
|
||||
.chat-application .chat-app-window .user-chats .chats .chat-body .chat-content p
|
||||
{
|
||||
margin: 0;
|
||||
}
|
||||
.chat-application .chat-app-window .user-chats .chats .chat-avatar
|
||||
{
|
||||
float: right;
|
||||
}
|
||||
.chat-application .chat-app-window .user-chats .chats .chat-left .chat-avatar
|
||||
{
|
||||
float: left;
|
||||
}
|
||||
.chat-application .chat-app-window .user-chats .chats .chat-left .chat-body
|
||||
{
|
||||
margin: 0;
|
||||
}
|
||||
.chat-application .chat-app-window .user-chats .chats .chat-left .chat-content
|
||||
{
|
||||
float: left;
|
||||
|
||||
margin: 10px 10px 10px 20px;
|
||||
|
||||
text-align: left;
|
||||
|
||||
color: #626262;
|
||||
border: 1px solid #dae1e7;
|
||||
background: none;
|
||||
background-color: white;
|
||||
}
|
||||
1
public/vendor/dashboard/app-assets/css/pages/dashboard-ecommerce.min.css
vendored
Executable file
1
public/vendor/dashboard/app-assets/css/pages/dashboard-ecommerce.min.css
vendored
Executable file
@@ -0,0 +1 @@
|
||||
.chat-application .chat-app-window .user-chats{position:relative;height:415px;padding:10px 20px;text-align:center}.chat-application .chat-app-window .user-chats .chats{padding:0}.chat-application .chat-app-window .user-chats .chats .chat-body{display:block;overflow:hidden;margin:10px 30px 0 0}.chat-application .chat-app-window .user-chats .chats .chat-body .chat-content{display:block;float:right;clear:both;margin:0 20px 10px 0;padding:.75rem 1rem;text-align:left;color:#fff;border-radius:.5rem;background:-webkit-linear-gradient(332deg,#7367f0,rgba(115,103,240,.7));background:-moz-linear-gradient(332deg,#7367f0,rgba(115,103,240,.7));background:-o-linear-gradient(332deg,#7367f0,rgba(115,103,240,.7));background:linear-gradient(118deg,#7367f0,rgba(115,103,240,.7));-webkit-box-shadow:0 4px 8px 0 rgba(0,0,0,.12),0 2px 4px 0 rgba(0,0,0,.08);box-shadow:0 4px 8px 0 rgba(0,0,0,.12),0 2px 4px 0 rgba(0,0,0,.08)}.chat-application .chat-app-window .user-chats .chats .chat-body .chat-content p,.chat-application .chat-app-window .user-chats .chats .chat-left .chat-body{margin:0}.chat-application .chat-app-window .user-chats .chats .chat-avatar{float:right}.chat-application .chat-app-window .user-chats .chats .chat-left .chat-avatar{float:left}.chat-application .chat-app-window .user-chats .chats .chat-left .chat-content{float:left;margin:10px 10px 10px 20px;text-align:left;color:#626262;border:1px solid #dae1e7;background:#fff}
|
||||
722
public/vendor/dashboard/app-assets/css/pages/data-list-view.css
vendored
Executable file
722
public/vendor/dashboard/app-assets/css/pages/data-list-view.css
vendored
Executable file
@@ -0,0 +1,722 @@
|
||||
/*========================================================
|
||||
DARK LAYOUT
|
||||
=========================================================*/
|
||||
.data-list-view-header .table-responsive .top,
|
||||
.data-thumb-view-header .table-responsive .top
|
||||
{
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -moz-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
|
||||
margin-bottom: 1rem;
|
||||
padding: 0 1rem;
|
||||
|
||||
-webkit-box-pack: justify;
|
||||
-webkit-justify-content: space-between;
|
||||
-moz-box-pack: justify;
|
||||
-ms-flex-pack: justify;
|
||||
justify-content: space-between;
|
||||
}
|
||||
.data-list-view-header .table-responsive .top .action-btns,
|
||||
.data-thumb-view-header .table-responsive .top .action-btns
|
||||
{
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -moz-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
|
||||
margin-top: 1.5rem;
|
||||
}
|
||||
.data-list-view-header .table-responsive .top .action-btns .actions-dropodown,
|
||||
.data-thumb-view-header .table-responsive .top .action-btns .actions-dropodown
|
||||
{
|
||||
margin-right: .75rem;
|
||||
|
||||
border-radius: .5rem;
|
||||
-webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .14);
|
||||
box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .14);
|
||||
}
|
||||
.data-list-view-header .table-responsive .top .action-btns .actions-dropodown .dropdown-toggle,
|
||||
.data-thumb-view-header .table-responsive .top .action-btns .actions-dropodown .dropdown-toggle
|
||||
{
|
||||
font-size: 1.125rem;
|
||||
font-weight: 500;
|
||||
}
|
||||
.data-list-view-header .table-responsive .top .action-btns .actions-dropodown .dropdown-toggle:after,
|
||||
.data-thumb-view-header .table-responsive .top .action-btns .actions-dropodown .dropdown-toggle:after
|
||||
{
|
||||
left: 0;
|
||||
}
|
||||
.data-list-view-header .table-responsive .top .action-btns .dt-buttons .btn,
|
||||
.data-thumb-view-header .table-responsive .top .action-btns .dt-buttons .btn
|
||||
{
|
||||
padding: .9rem .938rem;
|
||||
}
|
||||
.data-list-view-header .table-responsive .top .dataTables_length,
|
||||
.data-thumb-view-header .table-responsive .top .dataTables_length
|
||||
{
|
||||
display: inline-block;
|
||||
}
|
||||
.data-list-view-header .table-responsive .top .dataTables_length .custom-select,
|
||||
.data-thumb-view-header .table-responsive .top .dataTables_length .custom-select
|
||||
{
|
||||
font-size: 1rem;
|
||||
|
||||
width: 8.714rem;
|
||||
height: 3rem;
|
||||
|
||||
border: 1px solid #dae1e7;
|
||||
border-radius: 1.428rem;
|
||||
background-position: -webkit-calc(100% - 12px) 13px, -webkit-calc(100% - 20px) 13px, 100% 0;
|
||||
background-position: -moz-calc(100% - 12px) 13px, -moz-calc(100% - 20px) 13px, 100% 0;
|
||||
background-position: calc(100% - 12px) 13px, calc(100% - 20px) 13px, 100% 0;
|
||||
}
|
||||
.data-list-view-header .table-responsive .top .dataTables_length .custom-select:focus,
|
||||
.data-thumb-view-header .table-responsive .top .dataTables_length .custom-select:focus
|
||||
{
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
.data-list-view-header .table-responsive .top .dataTables_filter,
|
||||
.data-thumb-view-header .table-responsive .top .dataTables_filter
|
||||
{
|
||||
display: inline-block;
|
||||
}
|
||||
.data-list-view-header .table-responsive .top .dataTables_filter .form-control,
|
||||
.data-thumb-view-header .table-responsive .top .dataTables_filter .form-control
|
||||
{
|
||||
padding: 1.45rem 2.8rem !important;
|
||||
|
||||
border: 1px solid #dae1e7;
|
||||
border-radius: 1.428rem;
|
||||
}
|
||||
.data-list-view-header .table-responsive .top .dataTables_filter label,
|
||||
.data-thumb-view-header .table-responsive .top .dataTables_filter label
|
||||
{
|
||||
position: relative;
|
||||
}
|
||||
.data-list-view-header .table-responsive .top .dataTables_filter label:after,
|
||||
.data-thumb-view-header .table-responsive .top .dataTables_filter label:after
|
||||
{
|
||||
font-family: 'feather';
|
||||
|
||||
position: absolute;
|
||||
top: .928rem;
|
||||
left: 1.428rem;
|
||||
|
||||
content: '\e8bd';
|
||||
}
|
||||
|
||||
.data-list-view-header .table-responsive .dataTables_wrapper .dataTables_paginate ul.pagination,
|
||||
.data-thumb-view-header .table-responsive .dataTables_wrapper .dataTables_paginate ul.pagination
|
||||
{
|
||||
-webkit-box-pack: center;
|
||||
-webkit-justify-content: center;
|
||||
-moz-box-pack: center;
|
||||
-ms-flex-pack: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.data-list-view-header .add-new-data-sidebar .overlay-bg,
|
||||
.data-thumb-view-header .add-new-data-sidebar .overlay-bg
|
||||
{
|
||||
position: fixed;
|
||||
z-index: 1032;
|
||||
top: 0;
|
||||
left: 0;
|
||||
|
||||
display: none;
|
||||
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
|
||||
-webkit-transition: all .3s ease;
|
||||
-moz-transition: all .3s ease;
|
||||
-o-transition: all .3s ease;
|
||||
transition: all .3s ease;
|
||||
|
||||
opacity: 0;
|
||||
background: rgba(0, 0, 0, .2);
|
||||
}
|
||||
.data-list-view-header .add-new-data-sidebar .overlay-bg.show,
|
||||
.data-thumb-view-header .add-new-data-sidebar .overlay-bg.show
|
||||
{
|
||||
display: block;
|
||||
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.data-list-view-header .add-new-data-sidebar .add-new-data,
|
||||
.data-thumb-view-header .add-new-data-sidebar .add-new-data
|
||||
{
|
||||
position: fixed;
|
||||
z-index: 1033;
|
||||
top: 0;
|
||||
right: 0;
|
||||
left: auto;
|
||||
|
||||
overflow: hidden;
|
||||
|
||||
width: 28.57rem;
|
||||
max-width: 90vw;
|
||||
height: 100vh;
|
||||
|
||||
-webkit-transition: all .25s ease;
|
||||
-moz-transition: all .25s ease;
|
||||
-o-transition: all .25s ease;
|
||||
transition: all .25s ease;
|
||||
-webkit-transform: translateX(100%);
|
||||
-moz-transform: translateX(100%);
|
||||
-ms-transform: translateX(100%);
|
||||
-o-transform: translateX(100%);
|
||||
transform: translateX(100%);
|
||||
|
||||
background: #fff;
|
||||
-webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, .05);
|
||||
box-shadow: 0 0 15px 0 rgba(0, 0, 0, .05);
|
||||
}
|
||||
.data-list-view-header .add-new-data-sidebar .add-new-data.show,
|
||||
.data-thumb-view-header .add-new-data-sidebar .add-new-data.show
|
||||
{
|
||||
-webkit-transform: translateX(0%);
|
||||
-moz-transform: translateX(0%);
|
||||
-ms-transform: translateX(0%);
|
||||
-o-transform: translateX(0%);
|
||||
transform: translateX(0%);
|
||||
}
|
||||
.data-list-view-header .add-new-data-sidebar .add-new-data .new-data-title,
|
||||
.data-thumb-view-header .add-new-data-sidebar .add-new-data .new-data-title
|
||||
{
|
||||
padding-bottom: .714rem;
|
||||
|
||||
border-bottom: 1px solid rgba(0, 0, 0, .1);
|
||||
}
|
||||
.data-list-view-header .add-new-data-sidebar .add-new-data .new-data-title .hide-data-sidebar,
|
||||
.data-thumb-view-header .add-new-data-sidebar .add-new-data .new-data-title .hide-data-sidebar
|
||||
{
|
||||
position: relative;
|
||||
}
|
||||
.data-list-view-header .add-new-data-sidebar .add-new-data .new-data-title .hide-data-sidebar i,
|
||||
.data-thumb-view-header .add-new-data-sidebar .add-new-data .new-data-title .hide-data-sidebar i
|
||||
{
|
||||
font-size: 1.71rem;
|
||||
|
||||
position: absolute;
|
||||
top: -.1428rem;
|
||||
right: 0;
|
||||
|
||||
cursor: pointer;
|
||||
}
|
||||
.data-list-view-header .add-new-data-sidebar .add-new-data .data-items,
|
||||
.data-thumb-view-header .add-new-data-sidebar .add-new-data .data-items
|
||||
{
|
||||
position: relative;
|
||||
|
||||
height: -webkit-calc(100% - 10rem);
|
||||
height: -moz-calc(100% - 10rem);
|
||||
height: calc(100% - 10rem);
|
||||
|
||||
border-bottom: 1px solid rgba(0, 0, 0, .1);
|
||||
}
|
||||
.data-list-view-header .add-new-data-sidebar .add-new-data .data-items .data-field-col,
|
||||
.data-thumb-view-header .add-new-data-sidebar .add-new-data .data-items .data-field-col
|
||||
{
|
||||
margin-top: 1.25rem;
|
||||
}
|
||||
.data-list-view-header .add-new-data-sidebar .add-new-data .data-items .data-field-col.data-list-upload,
|
||||
.data-thumb-view-header .add-new-data-sidebar .add-new-data .data-items .data-field-col.data-list-upload
|
||||
{
|
||||
margin-top: 2rem;
|
||||
}
|
||||
.data-list-view-header .add-new-data-sidebar .add-new-data .data-items .data-field-col .dropzone,
|
||||
.data-thumb-view-header .add-new-data-sidebar .add-new-data .data-items .data-field-col .dropzone
|
||||
{
|
||||
min-height: 14.285rem;
|
||||
}
|
||||
.data-list-view-header .add-new-data-sidebar .add-new-data .data-items .data-field-col .dropzone .dz-message,
|
||||
.data-thumb-view-header .add-new-data-sidebar .add-new-data .data-items .data-field-col .dropzone .dz-message
|
||||
{
|
||||
height: auto;
|
||||
}
|
||||
.data-list-view-header .add-new-data-sidebar .add-new-data .data-items .data-field-col .dropzone .dz-message:before,
|
||||
.data-thumb-view-header .add-new-data-sidebar .add-new-data .data-items .data-field-col .dropzone .dz-message:before
|
||||
{
|
||||
font-size: 2.857rem;
|
||||
}
|
||||
|
||||
table.data-list-view.dataTable,
|
||||
table.data-thumb-view.dataTable
|
||||
{
|
||||
padding: 0 .7rem;
|
||||
|
||||
border-spacing: 0 1.3rem;
|
||||
}
|
||||
table.data-list-view.dataTable thead th,
|
||||
table.data-thumb-view.dataTable thead th
|
||||
{
|
||||
font-weight: 600;
|
||||
|
||||
padding: .714rem 1.785rem;
|
||||
}
|
||||
table.data-list-view.dataTable thead th input:focus,
|
||||
table.data-thumb-view.dataTable thead th input:focus
|
||||
{
|
||||
outline: 0;
|
||||
}
|
||||
table.data-list-view.dataTable thead th:first-child,
|
||||
table.data-thumb-view.dataTable thead th:first-child
|
||||
{
|
||||
padding-left: 0;
|
||||
}
|
||||
table.data-list-view.dataTable thead .sorting_asc,
|
||||
table.data-list-view.dataTable thead .sorting_desc,
|
||||
table.data-list-view.dataTable thead .sorting,
|
||||
table.data-thumb-view.dataTable thead .sorting_asc,
|
||||
table.data-thumb-view.dataTable thead .sorting_desc,
|
||||
table.data-thumb-view.dataTable thead .sorting
|
||||
{
|
||||
padding-right: inherit;
|
||||
}
|
||||
table.data-list-view.dataTable thead .sorting_asc:before,
|
||||
table.data-list-view.dataTable thead .sorting_desc:before,
|
||||
table.data-list-view.dataTable thead .sorting:before,
|
||||
table.data-thumb-view.dataTable thead .sorting_asc:before,
|
||||
table.data-thumb-view.dataTable thead .sorting_desc:before,
|
||||
table.data-thumb-view.dataTable thead .sorting:before
|
||||
{
|
||||
font-size: .7rem;
|
||||
|
||||
top: .642rem;
|
||||
left: .857rem;
|
||||
}
|
||||
table.data-list-view.dataTable thead .sorting_asc:after,
|
||||
table.data-list-view.dataTable thead .sorting_desc:after,
|
||||
table.data-list-view.dataTable thead .sorting:after,
|
||||
table.data-thumb-view.dataTable thead .sorting_asc:after,
|
||||
table.data-thumb-view.dataTable thead .sorting_desc:after,
|
||||
table.data-thumb-view.dataTable thead .sorting:after
|
||||
{
|
||||
font-size: .7rem;
|
||||
|
||||
top: 1.071rem;
|
||||
left: .857rem;
|
||||
}
|
||||
table.data-list-view.dataTable thead .dt-checkboxes-select-all input,
|
||||
table.data-thumb-view.dataTable thead .dt-checkboxes-select-all input
|
||||
{
|
||||
position: relative;
|
||||
|
||||
width: 0;
|
||||
}
|
||||
table.data-list-view.dataTable thead .dt-checkboxes-select-all input:before,
|
||||
table.data-thumb-view.dataTable thead .dt-checkboxes-select-all input:before
|
||||
{
|
||||
position: absolute;
|
||||
|
||||
overflow: hidden;
|
||||
|
||||
width: 1.071rem;
|
||||
height: 1.071rem;
|
||||
padding: 0;
|
||||
|
||||
content: '';
|
||||
-webkit-transition: all .2s ease;
|
||||
-moz-transition: all .2s ease;
|
||||
-o-transition: all .2s ease;
|
||||
transition: all .2s ease;
|
||||
transition: all .2s ease;
|
||||
-webkit-transform: rotate(-90deg);
|
||||
-moz-transform: rotate(-90deg);
|
||||
-ms-transform: rotate(-90deg);
|
||||
-o-transform: rotate(-90deg);
|
||||
transform: rotate(-90deg);
|
||||
|
||||
border: 2px solid #b4b4b4;
|
||||
border-radius: 2px;
|
||||
}
|
||||
table.data-list-view.dataTable thead .dt-checkboxes-select-all input:after,
|
||||
table.data-thumb-view.dataTable thead .dt-checkboxes-select-all input:after
|
||||
{
|
||||
font-family: 'feather';
|
||||
font-size: .75rem;
|
||||
line-height: 1.2;
|
||||
|
||||
position: absolute;
|
||||
|
||||
overflow: hidden;
|
||||
|
||||
width: .928rem;
|
||||
height: 1rem;
|
||||
|
||||
content: '\e83f';
|
||||
-webkit-transition: all .2s ease;
|
||||
-moz-transition: all .2s ease;
|
||||
-o-transition: all .2s ease;
|
||||
transition: all .2s ease;
|
||||
-webkit-transform: translate(100%);
|
||||
-moz-transform: translate(100%);
|
||||
-ms-transform: translate(100%);
|
||||
-o-transform: translate(100%);
|
||||
transform: translate(100%);
|
||||
-webkit-transform-origin: right;
|
||||
-moz-transform-origin: right;
|
||||
-ms-transform-origin: right;
|
||||
-o-transform-origin: right;
|
||||
transform-origin: right;
|
||||
|
||||
opacity: 0;
|
||||
color: #fff;
|
||||
border: 2px solid #7367f0;
|
||||
background-color: #7367f0;
|
||||
}
|
||||
table.data-list-view.dataTable thead .dt-checkboxes-select-all input:active:checked:after,
|
||||
table.data-thumb-view.dataTable thead .dt-checkboxes-select-all input:active:checked:after
|
||||
{
|
||||
-webkit-transform: translate(3px);
|
||||
-moz-transform: translate(3px);
|
||||
-ms-transform: translate(3px);
|
||||
-o-transform: translate(3px);
|
||||
transform: translate(3px);
|
||||
}
|
||||
table.data-list-view.dataTable thead .dt-checkboxes-select-all input:checked:before,
|
||||
table.data-thumb-view.dataTable thead .dt-checkboxes-select-all input:checked:before
|
||||
{
|
||||
-webkit-transform: rotate(0deg);
|
||||
-moz-transform: rotate(0deg);
|
||||
-ms-transform: rotate(0deg);
|
||||
-o-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
|
||||
border: 2px solid #7367f0;
|
||||
}
|
||||
table.data-list-view.dataTable thead .dt-checkboxes-select-all input:checked:after,
|
||||
table.data-thumb-view.dataTable thead .dt-checkboxes-select-all input:checked:after
|
||||
{
|
||||
-webkit-transition: all .2s ease;
|
||||
-moz-transition: all .2s ease;
|
||||
-o-transition: all .2s ease;
|
||||
transition: all .2s ease;
|
||||
-webkit-transform: translate(0);
|
||||
-moz-transform: translate(0);
|
||||
-ms-transform: translate(0);
|
||||
-o-transform: translate(0);
|
||||
transform: translate(0);
|
||||
|
||||
opacity: 1;
|
||||
}
|
||||
table.data-list-view.dataTable tbody tr,
|
||||
table.data-thumb-view.dataTable tbody tr
|
||||
{
|
||||
cursor: pointer;
|
||||
-webkit-transition: all .3s ease;
|
||||
-moz-transition: all .3s ease;
|
||||
-o-transition: all .3s ease;
|
||||
transition: all .3s ease;
|
||||
|
||||
border-radius: .5rem;
|
||||
background-color: #fff;
|
||||
-webkit-box-shadow: rgba(0, 0, 0, .05) 0 4px 20px 0;
|
||||
box-shadow: rgba(0, 0, 0, .05) 0 4px 20px 0;
|
||||
}
|
||||
table.data-list-view.dataTable tbody tr:hover,
|
||||
table.data-thumb-view.dataTable tbody tr:hover
|
||||
{
|
||||
-webkit-transition: all .3s ease;
|
||||
-moz-transition: all .3s ease;
|
||||
-o-transition: all .3s ease;
|
||||
transition: all .3s ease;
|
||||
-webkit-transform: translateY(-4px);
|
||||
-moz-transform: translateY(-4px);
|
||||
-ms-transform: translateY(-4px);
|
||||
-o-transform: translateY(-4px);
|
||||
transform: translateY(-4px);
|
||||
}
|
||||
table.data-list-view.dataTable tbody tr td:first-child,
|
||||
table.data-thumb-view.dataTable tbody tr td:first-child
|
||||
{
|
||||
padding-left: 1rem;
|
||||
|
||||
border-top-left-radius: .5rem;
|
||||
border-bottom-left-radius: .5rem;
|
||||
}
|
||||
table.data-list-view.dataTable tbody tr td:last-child,
|
||||
table.data-thumb-view.dataTable tbody tr td:last-child
|
||||
{
|
||||
border-top-right-radius: .5rem;
|
||||
border-bottom-right-radius: .5rem;
|
||||
}
|
||||
table.data-list-view.dataTable tbody tr.selected td,
|
||||
table.data-thumb-view.dataTable tbody tr.selected td
|
||||
{
|
||||
border-radius: 0;
|
||||
}
|
||||
table.data-list-view.dataTable tbody td,
|
||||
table.data-thumb-view.dataTable tbody td
|
||||
{
|
||||
padding: 1.357rem;
|
||||
|
||||
vertical-align: middle;
|
||||
|
||||
border: none;
|
||||
}
|
||||
table.data-list-view.dataTable tbody td input:focus,
|
||||
table.data-thumb-view.dataTable tbody td input:focus
|
||||
{
|
||||
outline: 0;
|
||||
}
|
||||
table.data-list-view.dataTable tbody td.product-name,
|
||||
table.data-thumb-view.dataTable tbody td.product-name
|
||||
{
|
||||
font-weight: 500;
|
||||
}
|
||||
table.data-list-view.dataTable tbody td:focus,
|
||||
table.data-thumb-view.dataTable tbody td:focus
|
||||
{
|
||||
outline: 0;
|
||||
}
|
||||
table.data-list-view.dataTable tbody td.dt-checkboxes-cell input,
|
||||
table.data-thumb-view.dataTable tbody td.dt-checkboxes-cell input
|
||||
{
|
||||
position: relative;
|
||||
|
||||
width: 0;
|
||||
}
|
||||
table.data-list-view.dataTable tbody td.dt-checkboxes-cell input:before,
|
||||
table.data-thumb-view.dataTable tbody td.dt-checkboxes-cell input:before
|
||||
{
|
||||
position: absolute;
|
||||
left: -8px;
|
||||
|
||||
overflow: hidden;
|
||||
|
||||
width: 1.071rem;
|
||||
height: 1.071rem;
|
||||
padding: 0;
|
||||
|
||||
content: '';
|
||||
-webkit-transition: all .2s ease;
|
||||
-moz-transition: all .2s ease;
|
||||
-o-transition: all .2s ease;
|
||||
transition: all .2s ease;
|
||||
-webkit-transform: rotate(-90deg);
|
||||
-moz-transform: rotate(-90deg);
|
||||
-ms-transform: rotate(-90deg);
|
||||
-o-transform: rotate(-90deg);
|
||||
transform: rotate(-90deg);
|
||||
|
||||
border: 2px solid #b4b4b4;
|
||||
border-radius: 2px;
|
||||
}
|
||||
table.data-list-view.dataTable tbody td.dt-checkboxes-cell input:after,
|
||||
table.data-thumb-view.dataTable tbody td.dt-checkboxes-cell input:after
|
||||
{
|
||||
font-family: 'feather';
|
||||
font-size: .75rem;
|
||||
|
||||
position: absolute;
|
||||
left: -.4285rem;
|
||||
|
||||
overflow: hidden;
|
||||
|
||||
width: .857rem;
|
||||
height: 1rem;
|
||||
|
||||
content: '\e83f';
|
||||
-webkit-transition: all .2s ease;
|
||||
-moz-transition: all .2s ease;
|
||||
-o-transition: all .2s ease;
|
||||
transition: all .2s ease;
|
||||
-webkit-transform: rotate(-90deg) translate(100%);
|
||||
-moz-transform: rotate(-90deg) translate(100%);
|
||||
-ms-transform: rotate(-90deg) translate(100%);
|
||||
-o-transform: rotate(-90deg) translate(100%);
|
||||
transform: rotate(-90deg) translate(100%);
|
||||
-webkit-transform-origin: right;
|
||||
-moz-transform-origin: right;
|
||||
-ms-transform-origin: right;
|
||||
-o-transform-origin: right;
|
||||
transform-origin: right;
|
||||
|
||||
opacity: 0;
|
||||
color: #fff;
|
||||
background-color: #7367f0;
|
||||
}
|
||||
table.data-list-view.dataTable tbody td.dt-checkboxes-cell input:active:checked:after,
|
||||
table.data-thumb-view.dataTable tbody td.dt-checkboxes-cell input:active:checked:after
|
||||
{
|
||||
-webkit-transform: translate(3px);
|
||||
-moz-transform: translate(3px);
|
||||
-ms-transform: translate(3px);
|
||||
-o-transform: translate(3px);
|
||||
transform: translate(3px);
|
||||
}
|
||||
table.data-list-view.dataTable tbody td.dt-checkboxes-cell input:checked:before,
|
||||
table.data-thumb-view.dataTable tbody td.dt-checkboxes-cell input:checked:before
|
||||
{
|
||||
-webkit-transition: all .2s ease;
|
||||
-moz-transition: all .2s ease;
|
||||
-o-transition: all .2s ease;
|
||||
transition: all .2s ease;
|
||||
-webkit-transform: rotate(0deg);
|
||||
-moz-transform: rotate(0deg);
|
||||
-ms-transform: rotate(0deg);
|
||||
-o-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
|
||||
border: 2px solid #7367f0;
|
||||
}
|
||||
table.data-list-view.dataTable tbody td.dt-checkboxes-cell input:checked:after,
|
||||
table.data-thumb-view.dataTable tbody td.dt-checkboxes-cell input:checked:after
|
||||
{
|
||||
-webkit-transition: all .2s ease;
|
||||
-moz-transition: all .2s ease;
|
||||
-o-transition: all .2s ease;
|
||||
transition: all .2s ease;
|
||||
-webkit-transform: rotate(0deg) translate(0);
|
||||
-moz-transform: rotate(0deg) translate(0);
|
||||
-ms-transform: rotate(0deg) translate(0);
|
||||
-o-transform: rotate(0deg) translate(0);
|
||||
transform: rotate(0deg) translate(0);
|
||||
|
||||
opacity: 1;
|
||||
}
|
||||
table.data-list-view.dataTable tbody td .progress,
|
||||
table.data-thumb-view.dataTable tbody td .progress
|
||||
{
|
||||
margin-bottom: 0;
|
||||
|
||||
-webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .12), 0 2px 4px 0 rgba(0, 0, 0, .08);
|
||||
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .12), 0 2px 4px 0 rgba(0, 0, 0, .08);
|
||||
}
|
||||
|
||||
table.data-thumb-view.dataTable tbody tr td
|
||||
{
|
||||
padding-top: .714rem;
|
||||
padding-bottom: .714rem;
|
||||
}
|
||||
table.data-thumb-view.dataTable tbody tr td.product-img img
|
||||
{
|
||||
height: 7.857rem;
|
||||
}
|
||||
|
||||
@media (max-width: 768px)
|
||||
{
|
||||
#data-list-view .table-responsive .top,
|
||||
#data-thumb-view .table-responsive .top
|
||||
{
|
||||
flex-direction: column;
|
||||
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-box-direction: normal;
|
||||
-webkit-flex-direction: column;
|
||||
-moz-box-orient: vertical;
|
||||
-moz-box-direction: normal;
|
||||
-ms-flex-direction: column;
|
||||
}
|
||||
#data-list-view .table-responsive .dt-buttons,
|
||||
#data-thumb-view .table-responsive .dt-buttons
|
||||
{
|
||||
width: auto;
|
||||
|
||||
text-align: left;
|
||||
}
|
||||
#data-list-view .table-responsive .dataTables_length,
|
||||
#data-list-view .table-responsive .dataTables_filter,
|
||||
#data-thumb-view .table-responsive .dataTables_length,
|
||||
#data-thumb-view .table-responsive .dataTables_filter
|
||||
{
|
||||
text-align: right;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 576px)
|
||||
{
|
||||
.add-new-data-sidebar .data-items .data-list-upload .dropzone .dz-message:before
|
||||
{
|
||||
top: 3.428rem;
|
||||
}
|
||||
}
|
||||
|
||||
_:-ms-lang(x) tbody tr td.dt-checkboxes-cell input,
|
||||
_:-ms-lang(x) tbody tr th.dt-checkboxes-cell input,
|
||||
_:-ms-lang(x) thead tr td.dt-checkboxes-cell input,
|
||||
_:-ms-lang(x) thead tr th.dt-checkboxes-cell input,
|
||||
.data-list-view.dataTable tbody tr td.dt-checkboxes-cell input,
|
||||
.data-list-view.dataTable tbody tr th.dt-checkboxes-cell input,
|
||||
.data-list-view.dataTable thead tr td.dt-checkboxes-cell input,
|
||||
.data-list-view.dataTable thead tr th.dt-checkboxes-cell input,
|
||||
.data-thumb-view.dataTable tbody tr td.dt-checkboxes-cell input,
|
||||
.data-thumb-view.dataTable tbody tr th.dt-checkboxes-cell input,
|
||||
.data-thumb-view.dataTable thead tr td.dt-checkboxes-cell input,
|
||||
.data-thumb-view.dataTable thead tr th.dt-checkboxes-cell input
|
||||
{
|
||||
width: auto;
|
||||
}
|
||||
|
||||
_:-ms-lang(x) .table-responsive .top .dataTables_filter .form-control,
|
||||
.data-list-view.dataTable .table-responsive .top .dataTables_filter .form-control,
|
||||
.data-thumb-view.dataTable .table-responsive .top .dataTables_filter .form-control
|
||||
{
|
||||
height: 1.4rem !important;
|
||||
padding: 0rem .5rem !important;
|
||||
}
|
||||
_:-ms-lang(x) .table-responsive .top .dataTables_filter .form-control:after,
|
||||
.data-list-view.dataTable .table-responsive .top .dataTables_filter .form-control:after,
|
||||
.data-thumb-view.dataTable .table-responsive .top .dataTables_filter .form-control:after
|
||||
{
|
||||
display: none;
|
||||
}
|
||||
|
||||
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none)
|
||||
{
|
||||
#data-list-view .table-responsive .top .dataTables_filter .form-control,
|
||||
#data-thumb-view .table-responsive .top .dataTables_filter .form-control
|
||||
{
|
||||
height: 3rem !important;
|
||||
padding: 0rem 1rem !important;
|
||||
}
|
||||
#data-list-view .table-responsive .top .dataTables_filter label:after,
|
||||
#data-thumb-view .table-responsive .top .dataTables_filter label:after
|
||||
{
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@supports (-moz-osx-font-smoothing: auto)
|
||||
{
|
||||
.data-list-view input,
|
||||
.data-thumb-view input
|
||||
{
|
||||
width: auto !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media not all and (min-resolution: .001dpcm)
|
||||
{
|
||||
@supports (-webkit-appearance: none)
|
||||
{
|
||||
table.data-list-view tbody td.dt-checkboxes-cell input:after,
|
||||
table.data-thumb-view tbody td.dt-checkboxes-cell input:after
|
||||
{
|
||||
left: -.485rem;
|
||||
}
|
||||
.data-list-view .dt-checkboxes-cell input,
|
||||
.data-thumb-view .dt-checkboxes-cell input
|
||||
{
|
||||
top: -10px;
|
||||
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.data-list-view .mac-checkbox,
|
||||
.data-thumb-view .mac-checkbox
|
||||
{
|
||||
top: -10px;
|
||||
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
1
public/vendor/dashboard/app-assets/css/pages/data-list-view.min.css
vendored
Executable file
1
public/vendor/dashboard/app-assets/css/pages/data-list-view.min.css
vendored
Executable file
File diff suppressed because one or more lines are too long
4
public/vendor/dashboard/app-assets/css/pages/error.css
vendored
Executable file
4
public/vendor/dashboard/app-assets/css/pages/error.css
vendored
Executable file
@@ -0,0 +1,4 @@
|
||||
.error-code
|
||||
{
|
||||
font-size: 10rem;
|
||||
}
|
||||
1
public/vendor/dashboard/app-assets/css/pages/error.min.css
vendored
Executable file
1
public/vendor/dashboard/app-assets/css/pages/error.min.css
vendored
Executable file
@@ -0,0 +1 @@
|
||||
.error-code{font-size:10rem}
|
||||
68
public/vendor/dashboard/app-assets/css/pages/faq.css
vendored
Executable file
68
public/vendor/dashboard/app-assets/css/pages/faq.css
vendored
Executable file
@@ -0,0 +1,68 @@
|
||||
/*========================================================
|
||||
DARK LAYOUT
|
||||
=========================================================*/
|
||||
.faq-bg
|
||||
{
|
||||
background: url(../../../app-assets/images/pages/faq.jpg) no-repeat;
|
||||
-webkit-background-size: cover;
|
||||
background-size: cover;
|
||||
}
|
||||
.faq-bg .form-control:focus ~ .form-control-position i
|
||||
{
|
||||
color: #7367f0;
|
||||
}
|
||||
|
||||
.faq .faq-content .faq-table-content
|
||||
{
|
||||
font-weight: 500;
|
||||
|
||||
padding: .5rem;
|
||||
|
||||
cursor: pointer;
|
||||
}
|
||||
.faq .faq-content .faq-table-content i
|
||||
{
|
||||
margin-right: .5rem;
|
||||
}
|
||||
|
||||
.faq .supporter-details .supporter-img img
|
||||
{
|
||||
width: 35px;
|
||||
height: 35px;
|
||||
margin-right: .5rem;
|
||||
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.faq .supporter-info
|
||||
{
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.faq .accordion .collapse-title
|
||||
{
|
||||
font-weight: 500;
|
||||
|
||||
color: #2c2c2c;
|
||||
}
|
||||
|
||||
.faq .accordion .collapse-margin
|
||||
{
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 992px)
|
||||
{
|
||||
.faq-bg .card-body
|
||||
{
|
||||
padding: 8rem !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 768px) and (max-width: 991px)
|
||||
{
|
||||
.faq-bg .card-body
|
||||
{
|
||||
padding: 6rem !important;
|
||||
}
|
||||
}
|
||||
1
public/vendor/dashboard/app-assets/css/pages/faq.min.css
vendored
Executable file
1
public/vendor/dashboard/app-assets/css/pages/faq.min.css
vendored
Executable file
@@ -0,0 +1 @@
|
||||
.faq-bg{background:url(../../../app-assets/images/pages/faq.jpg) no-repeat;-webkit-background-size:cover;background-size:cover}.faq-bg .form-control:focus~.form-control-position i{color:#7367f0}.faq .faq-content .faq-table-content{font-weight:500;padding:.5rem;cursor:pointer}.faq .faq-content .faq-table-content i{margin-right:.5rem}.faq .supporter-details .supporter-img img{width:35px;height:35px;margin-right:.5rem;cursor:pointer}.faq .supporter-info{vertical-align:middle}.faq .accordion .collapse-title{font-weight:500;color:#2c2c2c}.faq .accordion .collapse-margin{background-color:#fff}@media only screen and (min-width:992px){.faq-bg .card-body{padding:8rem!important}}@media only screen and (min-width:768px) and (max-width:991px){.faq-bg .card-body{padding:6rem!important}}
|
||||
29
public/vendor/dashboard/app-assets/css/pages/invoice.css
vendored
Executable file
29
public/vendor/dashboard/app-assets/css/pages/invoice.css
vendored
Executable file
@@ -0,0 +1,29 @@
|
||||
/*========================================================
|
||||
DARK LAYOUT
|
||||
=========================================================*/
|
||||
.invoice-page
|
||||
{
|
||||
padding: 2.2rem;
|
||||
}
|
||||
.invoice-page .recipient-contact i,
|
||||
.invoice-page .company-contact i
|
||||
{
|
||||
position: relative;
|
||||
top: 2px;
|
||||
|
||||
padding-right: .2rem;
|
||||
}
|
||||
.invoice-page .recipient-info p,
|
||||
.invoice-page .company-info p,
|
||||
.invoice-page .company-contact p,
|
||||
.invoice-page .recipient-contact p
|
||||
{
|
||||
line-height: 2;
|
||||
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.invoice-page .invoice-items-table table,
|
||||
.invoice-page .invoice-total-table table
|
||||
{
|
||||
border: 2px solid #f8f8f8;
|
||||
}
|
||||
1
public/vendor/dashboard/app-assets/css/pages/invoice.min.css
vendored
Executable file
1
public/vendor/dashboard/app-assets/css/pages/invoice.min.css
vendored
Executable file
@@ -0,0 +1 @@
|
||||
.invoice-page{padding:2.2rem}.invoice-page .company-contact i,.invoice-page .recipient-contact i{position:relative;top:2px;padding-right:.2rem}.invoice-page .company-contact p,.invoice-page .company-info p,.invoice-page .recipient-contact p,.invoice-page .recipient-info p{line-height:2;margin-bottom:0}.invoice-page .invoice-items-table table,.invoice-page .invoice-total-table table{border:2px solid #f8f8f8}
|
||||
57
public/vendor/dashboard/app-assets/css/pages/knowledge-base.css
vendored
Executable file
57
public/vendor/dashboard/app-assets/css/pages/knowledge-base.css
vendored
Executable file
@@ -0,0 +1,57 @@
|
||||
/*========================================================
|
||||
DARK LAYOUT
|
||||
=========================================================*/
|
||||
.knowledge-base-bg
|
||||
{
|
||||
background: url(../../../app-assets/images/pages/knowledge-base-cover.jpg) no-repeat;
|
||||
-webkit-background-size: cover;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
.knowledge-base-category .list-group-item,
|
||||
.knowledge-base-question .list-group-item
|
||||
{
|
||||
padding: .5rem 0;
|
||||
}
|
||||
.knowledge-base-category .list-group-item:hover,
|
||||
.knowledge-base-question .list-group-item:hover
|
||||
{
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.article-question li
|
||||
{
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -moz-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
|
||||
margin-bottom: .5rem;
|
||||
}
|
||||
|
||||
.article-question i
|
||||
{
|
||||
font-size: 1.2rem;
|
||||
|
||||
position: relative;
|
||||
top: 2px;
|
||||
|
||||
margin: 0 .5rem;
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 992px)
|
||||
{
|
||||
.knowledge-base-bg .card-body
|
||||
{
|
||||
padding: 8rem !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 768px) and (max-width: 991px)
|
||||
{
|
||||
.knowledge-base-bg .card-body
|
||||
{
|
||||
padding: 6rem !important;
|
||||
}
|
||||
}
|
||||
1
public/vendor/dashboard/app-assets/css/pages/knowledge-base.min.css
vendored
Executable file
1
public/vendor/dashboard/app-assets/css/pages/knowledge-base.min.css
vendored
Executable file
@@ -0,0 +1 @@
|
||||
.knowledge-base-bg{background:url(../../../app-assets/images/pages/knowledge-base-cover.jpg) no-repeat;-webkit-background-size:cover;background-size:cover}.knowledge-base-category .list-group-item,.knowledge-base-question .list-group-item{padding:.5rem 0}.knowledge-base-category .list-group-item:hover,.knowledge-base-question .list-group-item:hover{background-color:transparent}.article-question li{display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;margin-bottom:.5rem}.article-question i{font-size:1.2rem;position:relative;top:2px;margin:0 .5rem}@media only screen and (min-width:992px){.knowledge-base-bg .card-body{padding:8rem!important}}@media only screen and (min-width:768px) and (max-width:991px){.knowledge-base-bg .card-body{padding:6rem!important}}
|
||||
0
public/vendor/dashboard/app-assets/css/pages/register.css
vendored
Executable file
0
public/vendor/dashboard/app-assets/css/pages/register.css
vendored
Executable file
0
public/vendor/dashboard/app-assets/css/pages/register.min.css
vendored
Executable file
0
public/vendor/dashboard/app-assets/css/pages/register.min.css
vendored
Executable file
66
public/vendor/dashboard/app-assets/css/pages/search.css
vendored
Executable file
66
public/vendor/dashboard/app-assets/css/pages/search.css
vendored
Executable file
@@ -0,0 +1,66 @@
|
||||
/*========================================================
|
||||
DARK LAYOUT
|
||||
=========================================================*/
|
||||
#search-results .media-list .media
|
||||
{
|
||||
padding: .5rem 1rem;
|
||||
}
|
||||
|
||||
#search-results .media-list .media-body .list-inline i
|
||||
{
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
.search-menu .search-filter,
|
||||
.search-menu .dropdown-toggle
|
||||
{
|
||||
padding: .55rem 1rem !important;
|
||||
|
||||
cursor: pointer;
|
||||
|
||||
background-color: #fff;
|
||||
-webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, .11), 0 5px 15px 0 rgba(0, 0, 0, .08);
|
||||
box-shadow: 0 15px 30px 0 rgba(0, 0, 0, .11), 0 5px 15px 0 rgba(0, 0, 0, .08);
|
||||
}
|
||||
|
||||
.search-menu .dropdown-toggle
|
||||
{
|
||||
border-radius: 1.5rem !important;
|
||||
}
|
||||
.search-menu .dropdown-toggle::after
|
||||
{
|
||||
display: none;
|
||||
}
|
||||
|
||||
.search-result-info .btn.dropdown-toggle::after
|
||||
{
|
||||
left: 0;
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 577px)
|
||||
{
|
||||
#search-results li.media .media-object
|
||||
{
|
||||
width: 100px;
|
||||
}
|
||||
#search-results li.media iframe
|
||||
{
|
||||
width: 100px;
|
||||
height: 65px;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 576px)
|
||||
{
|
||||
#search-results li.media .media-left
|
||||
{
|
||||
width: 100%;
|
||||
}
|
||||
#search-results li.media .media-left img,
|
||||
#search-results li.media .media-left iframe
|
||||
{
|
||||
width: 100%;
|
||||
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
1
public/vendor/dashboard/app-assets/css/pages/search.min.css
vendored
Executable file
1
public/vendor/dashboard/app-assets/css/pages/search.min.css
vendored
Executable file
@@ -0,0 +1 @@
|
||||
#search-results .media-list .media{padding:.5rem 1rem}#search-results .media-list .media-body .list-inline i{font-size:1.2rem}.search-menu .dropdown-toggle,.search-menu .search-filter{padding:.55rem 1rem!important;cursor:pointer;background-color:#fff;-webkit-box-shadow:0 15px 30px 0 rgba(0,0,0,.11),0 5px 15px 0 rgba(0,0,0,.08);box-shadow:0 15px 30px 0 rgba(0,0,0,.11),0 5px 15px 0 rgba(0,0,0,.08)}.search-menu .dropdown-toggle{border-radius:1.5rem!important}.search-menu .dropdown-toggle::after{display:none}.search-result-info .btn.dropdown-toggle::after{left:0}@media only screen and (min-width:577px){#search-results li.media .media-object{width:100px}#search-results li.media iframe{width:100px;height:65px}}@media only screen and (max-width:576px){#search-results li.media .media-left{width:100%}#search-results li.media .media-left iframe,#search-results li.media .media-left img{width:100%;text-align:center}}
|
||||
1234
public/vendor/dashboard/app-assets/css/pages/timeline.css
vendored
Executable file
1234
public/vendor/dashboard/app-assets/css/pages/timeline.css
vendored
Executable file
File diff suppressed because it is too large
Load Diff
1
public/vendor/dashboard/app-assets/css/pages/timeline.min.css
vendored
Executable file
1
public/vendor/dashboard/app-assets/css/pages/timeline.min.css
vendored
Executable file
File diff suppressed because one or more lines are too long
18
public/vendor/dashboard/app-assets/css/pages/user-settings.css
vendored
Executable file
18
public/vendor/dashboard/app-assets/css/pages/user-settings.css
vendored
Executable file
@@ -0,0 +1,18 @@
|
||||
/*========================================================
|
||||
DARK LAYOUT
|
||||
=========================================================*/
|
||||
.user-form .dropzone
|
||||
{
|
||||
width: 200px;
|
||||
min-height: 200px;
|
||||
}
|
||||
.user-form .dropzone .dz-message
|
||||
{
|
||||
font-size: 1rem;
|
||||
|
||||
height: auto;
|
||||
}
|
||||
.user-form .dropzone .dz-message:before
|
||||
{
|
||||
font-size: 2rem;
|
||||
}
|
||||
1
public/vendor/dashboard/app-assets/css/pages/user-settings.min.css
vendored
Executable file
1
public/vendor/dashboard/app-assets/css/pages/user-settings.min.css
vendored
Executable file
@@ -0,0 +1 @@
|
||||
.user-form .dropzone{width:200px;min-height:200px}.user-form .dropzone .dz-message{font-size:1rem;height:auto}.user-form .dropzone .dz-message:before{font-size:2rem}
|
||||
120
public/vendor/dashboard/app-assets/css/pages/users.css
vendored
Executable file
120
public/vendor/dashboard/app-assets/css/pages/users.css
vendored
Executable file
@@ -0,0 +1,120 @@
|
||||
/*========================================================
|
||||
DARK LAYOUT
|
||||
=========================================================*/
|
||||
#user-profile .profile-img-container
|
||||
{
|
||||
position: absolute;
|
||||
bottom: -3rem;
|
||||
left: 10%;
|
||||
|
||||
width: 80%;
|
||||
}
|
||||
#user-profile .profile-img-container img
|
||||
{
|
||||
width: 85px;
|
||||
height: 85px;
|
||||
|
||||
border: .3rem solid #fff;
|
||||
}
|
||||
|
||||
#user-profile #profile-info .card-header i
|
||||
{
|
||||
position: relative;
|
||||
top: -3px;
|
||||
}
|
||||
|
||||
#user-profile #profile-info .user-like i
|
||||
{
|
||||
font-size: 1.7rem;
|
||||
}
|
||||
|
||||
#user-profile #profile-info .suggested-block .user-page-info p
|
||||
{
|
||||
font-weight: 500;
|
||||
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
#user-profile #profile-info .suggested-block i
|
||||
{
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
#user-profile .relative
|
||||
{
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#user-profile .profile-header-nav
|
||||
{
|
||||
padding: .75rem 1rem;
|
||||
|
||||
background-color: #fff;
|
||||
}
|
||||
#user-profile .profile-header-nav .navbar
|
||||
{
|
||||
-webkit-box-pack: end;
|
||||
-webkit-justify-content: flex-end;
|
||||
-moz-box-pack: end;
|
||||
-ms-flex-pack: end;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
#user-profile .profile-header-nav .navbar .navbar-toggler
|
||||
{
|
||||
font-size: 1.7rem;
|
||||
|
||||
color: #626262;
|
||||
}
|
||||
#user-profile .profile-header-nav .navbar .navbar-toggler:focus
|
||||
{
|
||||
outline: none;
|
||||
}
|
||||
|
||||
#user-profile .user-latest-img
|
||||
{
|
||||
-webkit-transition: all .2s ease-in-out;
|
||||
-moz-transition: all .2s ease-in-out;
|
||||
-o-transition: all .2s ease-in-out;
|
||||
transition: all .2s ease-in-out;
|
||||
}
|
||||
#user-profile .user-latest-img:hover
|
||||
{
|
||||
z-index: 30;
|
||||
|
||||
-webkit-transform: translateY(-4px) scale(1.2);
|
||||
-moz-transform: translateY(-4px) scale(1.2);
|
||||
-ms-transform: translateY(-4px) scale(1.2);
|
||||
-o-transform: translateY(-4px) scale(1.2);
|
||||
transform: translateY(-4px) scale(1.2);
|
||||
}
|
||||
|
||||
#user-profile .block-element .spinner-border
|
||||
{
|
||||
border-width: 2px;
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 992px)
|
||||
{
|
||||
#user-profile .profile-header-nav .navbar .nav-item
|
||||
{
|
||||
padding-right: 2.25rem !important;
|
||||
padding-left: 2.25rem !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 992px)
|
||||
{
|
||||
#user-profile .user-latest-img img
|
||||
{
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 991px) and (min-width: 768px)
|
||||
{
|
||||
#user-profile .profile-header-nav .navbar .nav-item
|
||||
{
|
||||
padding-right: 1.5rem !important;
|
||||
padding-left: 1.5rem !important;
|
||||
}
|
||||
}
|
||||
1
public/vendor/dashboard/app-assets/css/pages/users.min.css
vendored
Executable file
1
public/vendor/dashboard/app-assets/css/pages/users.min.css
vendored
Executable file
@@ -0,0 +1 @@
|
||||
#user-profile .profile-img-container{position:absolute;bottom:-3rem;left:10%;width:80%}#user-profile .profile-img-container img{width:85px;height:85px;border:.3rem solid #fff}#user-profile #profile-info .card-header i{position:relative;top:-3px}#user-profile #profile-info .user-like i{font-size:1.7rem}#user-profile #profile-info .suggested-block .user-page-info p{font-weight:500;margin-bottom:0}#user-profile #profile-info .suggested-block i{cursor:pointer}#user-profile .relative{position:relative}#user-profile .profile-header-nav{padding:.75rem 1rem;background-color:#fff}#user-profile .profile-header-nav .navbar{-webkit-box-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}#user-profile .profile-header-nav .navbar .navbar-toggler{font-size:1.7rem;color:#626262}#user-profile .profile-header-nav .navbar .navbar-toggler:focus{outline:0}#user-profile .user-latest-img{-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}#user-profile .user-latest-img:hover{z-index:30;-webkit-transform:translateY(-4px) scale(1.2);-moz-transform:translateY(-4px) scale(1.2);-ms-transform:translateY(-4px) scale(1.2);-o-transform:translateY(-4px) scale(1.2);transform:translateY(-4px) scale(1.2)}#user-profile .block-element .spinner-border{border-width:2px}@media only screen and (min-width:992px){#user-profile .profile-header-nav .navbar .nav-item{padding-right:2.25rem!important;padding-left:2.25rem!important}}@media only screen and (max-width:992px){#user-profile .user-latest-img img{width:100%}}@media only screen and (max-width:991px) and (min-width:768px){#user-profile .profile-header-nav .navbar .nav-item{padding-right:1.5rem!important;padding-left:1.5rem!important}}
|
||||
Reference in New Issue
Block a user