issue #2 Done for Amenity feature.
This commit is contained in:
@@ -234,7 +234,92 @@
|
||||
<div class="hotkey_mm_blue">
|
||||
<div class="owl-carousel owl-theme" id="lst_hotkey_mm_blue"></div>
|
||||
</div>
|
||||
<div class="amenity"> </div>
|
||||
<div class="amenity">
|
||||
<div class="menu">
|
||||
<div id="title"></div>
|
||||
<div id="usage"></div>
|
||||
<div id="items">
|
||||
<table class="tbl_header">
|
||||
<tbody id="hdr">
|
||||
<tr>
|
||||
<th id="type"></th>
|
||||
<th id="quantity"></th>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<table class="tbl_record">
|
||||
<tbody id="record"></tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div id="summary">
|
||||
<div id="title"></div>
|
||||
<div id="value"></div>
|
||||
<div id="quantity"></div>
|
||||
</div>
|
||||
<div id="buttons">
|
||||
<div id="order"></div>
|
||||
<div id="details"></div>
|
||||
<div id="cancel"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="description">
|
||||
<div id="title"></div>
|
||||
<div id="comment"></div>
|
||||
<div id="thumb"></div>
|
||||
</div>
|
||||
<div class="cart-list">
|
||||
<div id="title"></div>
|
||||
<div id="usage"></div>
|
||||
<div id="items">
|
||||
<table class="tbl_header">
|
||||
<tbody id="hdr">
|
||||
<tr>
|
||||
<th id="type"></th>
|
||||
<th id="quantity"></th>
|
||||
<th id="amount"></th>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<table class="tbl_record">
|
||||
<tbody id="record"></tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div id="summary">
|
||||
<div id="title"></div>
|
||||
<div id="quantity"></div>
|
||||
<div id="amount"></div>
|
||||
</div>
|
||||
<div id="notice"></div>
|
||||
<div id="buttons">
|
||||
<div>
|
||||
<div id="confirm"></div>
|
||||
</div>
|
||||
<div>
|
||||
<div id="cancel"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="order-details">
|
||||
<div id="title"></div>
|
||||
<div id="usage"></div>
|
||||
<div id="orders">
|
||||
<table class="order_list">
|
||||
<tbody id="record"></tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div id="summary">
|
||||
<div id="title"></div>
|
||||
<div id="quantity"></div>
|
||||
<div id="amount"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="alert">
|
||||
<div id="order-complete">
|
||||
<div id="title"></div>
|
||||
<div id="message"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="roomservice">
|
||||
<div class="menu">
|
||||
<div id="title"></div>
|
||||
|
||||
@@ -429,20 +429,761 @@
|
||||
}
|
||||
|
||||
|
||||
/* Amenity Style */
|
||||
|
||||
/***********************
|
||||
* Amenity Style *
|
||||
***********************/
|
||||
|
||||
.popup .amenity {
|
||||
position: absolute;
|
||||
top: 96px;
|
||||
left: -560px;
|
||||
width: 496px;
|
||||
width: 1302px;
|
||||
height: 700px;
|
||||
overflow: hidden;
|
||||
display: none;
|
||||
background-color: rgba(67, 67, 67, 1);
|
||||
border-style: solid;
|
||||
border-color: rgb(96, 96, 96);
|
||||
filter: drop-shadow(0 0 10px rgba(255, 255, 255, 1));
|
||||
/* background-color: rgba(47, 47, 47, 1); */
|
||||
/* border-style: solid; */
|
||||
/* border-color: rgb(96, 96, 96); */
|
||||
/* filter: drop-shadow(0 0 10px rgba(255, 255, 255, 1)); */
|
||||
}
|
||||
|
||||
.popup .amenity .menu {
|
||||
width: 496px;
|
||||
height: 700px;
|
||||
overflow: hidden;
|
||||
display: inline-block;
|
||||
background-color: rgba(51, 63, 80, 1);
|
||||
color: rgb(255, 255, 255);
|
||||
vertical-align: top;
|
||||
/* border-style: solid; */
|
||||
/* border-color: rgb(96, 96, 96); */
|
||||
/* filter: drop-shadow(0 0 10px rgba(255, 255, 255, 1)); */
|
||||
/* box-shadow: 0px 0px 30px rgba(0, 0, 0, 1); */
|
||||
}
|
||||
|
||||
.popup .amenity .menu>#title {
|
||||
/* width: 466px; */
|
||||
height: 45px;
|
||||
line-height: 36px;
|
||||
overflow: hidden;
|
||||
font-size: 38px;
|
||||
text-align: left;
|
||||
margin: 10px 20px 5px 20px;
|
||||
}
|
||||
|
||||
.popup .amenity .menu>#usage {
|
||||
/* width: 454px; */
|
||||
height: 112px;
|
||||
line-height: 22px;
|
||||
font-size: 18px;
|
||||
text-align: left;
|
||||
margin: 5px 22px 5px 22px;
|
||||
border-bottom: 1px solid rgb(67, 82, 105);
|
||||
white-space: pre-line;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.popup .amenity .menu>#items {
|
||||
height: 282px;
|
||||
overflow-y: hidden;
|
||||
overflow-x: hidden;
|
||||
margin: 5px 22px 5px 22px;
|
||||
}
|
||||
|
||||
.popup .amenity .menu>#items table {
|
||||
width: 100%;
|
||||
margin: 0px 10px 0 0px;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
.popup .amenity .menu>#items>.tbl_header {
|
||||
height: 34px;
|
||||
max-height: 34px;
|
||||
line-height: 32px;
|
||||
font-size: 30px;
|
||||
text-align: center;
|
||||
margin: 5px 0 25px 0;
|
||||
}
|
||||
|
||||
.popup .amenity .menu>#items>.tbl_header tbody tr {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.popup .amenity .menu>#items>.tbl_header tbody tr>#type {
|
||||
width: 70%;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.popup .amenity .menu>#items>.tbl_header tbody tr>#quantity {
|
||||
width: 30%;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.popup .amenity .menu>#items>.tbl_record {
|
||||
height: 210px;
|
||||
}
|
||||
|
||||
.popup .amenity .menu>#items>.tbl_record tbody {
|
||||
height: 210px;
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.popup .amenity .menu>#items>.tbl_record tbody tr {
|
||||
height: 70px;
|
||||
max-height: 70px;
|
||||
border: 1px solid rgb(67, 82, 105);
|
||||
}
|
||||
|
||||
.popup .amenity .menu>#items>.tbl_record tbody tr.active {
|
||||
border: 2px solid rgb(255, 192, 0);
|
||||
/* background-color: rgba(67, 67, 67, 1); */
|
||||
/* box-shadow: 0px 0px 30px rgba(255, 192, 0, 1); */
|
||||
}
|
||||
|
||||
.popup .amenity .menu>#items>.tbl_record tbody tr>.products {
|
||||
height: 70px;
|
||||
}
|
||||
|
||||
.popup .amenity .menu>#items>.tbl_record tbody tr>.products>#index {
|
||||
font-size: 22px;
|
||||
line-height: 24px;
|
||||
width: 10%;
|
||||
float: left;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.popup .amenity .menu>#items>.tbl_record tbody tr>.products>#title {
|
||||
font-size: 22px;
|
||||
line-height: 24px;
|
||||
width: 90%;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.popup .amenity .menu>#items>.tbl_record tbody tr>.products>#price {
|
||||
font-size: 36px;
|
||||
line-height: 36px;
|
||||
width: 70%;
|
||||
float: left;
|
||||
text-align: right;
|
||||
padding: 0 55px 0 0;
|
||||
}
|
||||
|
||||
.popup .amenity .menu>#items>.tbl_record tbody tr>.products>#quantity {
|
||||
font-size: 36px;
|
||||
line-height: 36px;
|
||||
width: 30%;
|
||||
float: left;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.popup .amenity .menu>#summary {
|
||||
height: 70px;
|
||||
font-size: 38px;
|
||||
line-height: 64px;
|
||||
margin: 15px 22px 5px 22px;
|
||||
border: 1px solid rgb(67, 82, 105);
|
||||
}
|
||||
|
||||
.popup .amenity .menu>#summary>#title {
|
||||
width: 22%;
|
||||
float: left;
|
||||
text-align: center;
|
||||
/* padding: 0% 5% 0 20%; */
|
||||
}
|
||||
|
||||
.popup .amenity .menu>#summary>#value {
|
||||
width: 48%;
|
||||
float: left;
|
||||
text-align: right;
|
||||
color: rgb(255, 192, 0);
|
||||
padding: 0px 55px 0px 0px;
|
||||
}
|
||||
|
||||
.popup .amenity .menu>#summary>#quantity {
|
||||
width: 30%;
|
||||
float: left;
|
||||
text-align: center;
|
||||
color: rgb(255, 192, 0);
|
||||
}
|
||||
|
||||
.popup .amenity .menu>div#buttons {
|
||||
height: 145px;
|
||||
font-size: 30px;
|
||||
text-align: center;
|
||||
color: rgba(255, 255, 255, 1.0);
|
||||
margin: 15px 22px 5px 22px;
|
||||
}
|
||||
|
||||
.popup .amenity .menu>div#buttons div {
|
||||
height: 38px;
|
||||
border: 1px solid rgb(90, 90, 90);
|
||||
}
|
||||
|
||||
.popup .amenity .menu>div#buttons .active {
|
||||
border: 1px solid rgb(255, 192, 0);
|
||||
background-color: rgba(34, 42, 53, 1.0);
|
||||
}
|
||||
|
||||
.popup .amenity .menu>div#buttons #order {
|
||||
width: 100%;
|
||||
background-color: rgba(34, 42, 53, 1.0);
|
||||
/* border-radius: 5px; */
|
||||
}
|
||||
|
||||
.popup .amenity .menu>div#buttons #cancel {
|
||||
width: 100%;
|
||||
/* border-radius: 5px; */
|
||||
}
|
||||
|
||||
.popup .amenity .menu>div#buttons #details {
|
||||
width: 100%;
|
||||
/* border-radius: 5px; */
|
||||
}
|
||||
|
||||
|
||||
/* ROOM SERVICE -> ITEM Description */
|
||||
|
||||
.popup .amenity .description {
|
||||
width: 802px;
|
||||
height: 700px;
|
||||
display: inline-block;
|
||||
margin: 0px 0px 0px -4px;
|
||||
color: rgb(255, 255, 255);
|
||||
/* padding: 0; */
|
||||
background-color: rgba(36, 44, 56, 1.0);
|
||||
}
|
||||
|
||||
.popup .amenity .description>#title {
|
||||
width: 100%;
|
||||
height: 64px;
|
||||
line-height: 38px;
|
||||
overflow: hidden;
|
||||
font-size: 36px;
|
||||
padding: 10px 10px 5px 10px;
|
||||
}
|
||||
|
||||
.popup .amenity .description>#comment {
|
||||
width: 100%;
|
||||
height: 89px;
|
||||
line-height: 24px;
|
||||
overflow: hidden;
|
||||
font-size: 22px;
|
||||
padding: 5px 10px 5px 15px;
|
||||
white-space: pre-line;
|
||||
}
|
||||
|
||||
.popup .amenity .description>#thumb {
|
||||
width: 760px;
|
||||
height: 460px;
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
margin: 30px 0px 0px 21px;
|
||||
border: 1px solid rgb(255, 255, 255);
|
||||
}
|
||||
|
||||
|
||||
/* ROOM SERVICE -> CART LIST */
|
||||
|
||||
.popup .amenity>.cart-list {
|
||||
width: 802px;
|
||||
height: 700px;
|
||||
display: inline-block;
|
||||
margin: 0px 0px 0px -4px;
|
||||
color: rgb(255, 255, 255);
|
||||
/* padding: 0; */
|
||||
background-color: rgba(36, 44, 56, 1.0);
|
||||
}
|
||||
|
||||
.popup .amenity>.cart-list>#title {
|
||||
height: 45px;
|
||||
line-height: 36px;
|
||||
overflow: hidden;
|
||||
font-size: 38px;
|
||||
text-align: left;
|
||||
margin: 10px 20px 5px 20px;
|
||||
}
|
||||
|
||||
.popup .amenity>.cart-list>#usage {
|
||||
height: 102px;
|
||||
line-height: 22px;
|
||||
font-size: 18px;
|
||||
text-align: left;
|
||||
margin: 5px 22px 5px 22px;
|
||||
white-space: pre-line;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.popup .amenity .cart-list>#items {
|
||||
/* height: 352px; */
|
||||
/* overflow-y: auto; */
|
||||
/* overflow-y: hidden;
|
||||
overflow-x: hidden; */
|
||||
margin: 5px 22px 5px 22px;
|
||||
}
|
||||
|
||||
.popup .amenity .cart-list>#items table {
|
||||
width: 100%;
|
||||
margin: 0px 10px 0 0px;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
.popup .amenity .cart-list>#items>.tbl_header {
|
||||
line-height: 54px;
|
||||
font-size: 30px;
|
||||
text-align: center;
|
||||
margin: 5px 0 15px 0;
|
||||
}
|
||||
|
||||
.popup .amenity .cart-list>#items>.tbl_header tbody tr {
|
||||
height: 54px;
|
||||
max-height: 54px;
|
||||
background-color: rgb(51, 63, 80);
|
||||
border: 1px solid rgb(67, 82, 105);
|
||||
}
|
||||
|
||||
.popup .amenity .cart-list>#items>.tbl_header tbody tr>#type {
|
||||
width: 50%;
|
||||
float: left;
|
||||
text-align: left;
|
||||
padding: 0 0px 0 80px;
|
||||
}
|
||||
|
||||
.popup .amenity .cart-list>#items>.tbl_header tbody tr>#quantity {
|
||||
width: 20%;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.popup .amenity .cart-list>#items>.tbl_header tbody tr>#amount {
|
||||
width: 30%;
|
||||
float: left;
|
||||
padding: 0px 30px 0 0px;
|
||||
}
|
||||
|
||||
.popup .amenity .cart-list>#items>.tbl_record {
|
||||
/* height: 284px;*/
|
||||
}
|
||||
|
||||
.popup .amenity .cart-list>#items>.tbl_record tbody {
|
||||
height: 276px;
|
||||
display: block;
|
||||
/* overflow: hidden; */
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.popup .amenity .cart-list>#items>.tbl_record tbody tr {
|
||||
height: 52px;
|
||||
}
|
||||
|
||||
.popup .amenity .cart-list>#items>.tbl_record tbody tr.active {
|
||||
border: 2px solid rgb(255, 192, 0);
|
||||
/* background-color: rgba(67, 67, 67, 1); */
|
||||
/* box-shadow: 0px 0px 30px rgba(255, 192, 0, 1); */
|
||||
}
|
||||
|
||||
.popup .amenity .cart-list>#items>.tbl_record tbody tr>.products {
|
||||
height: 52px;
|
||||
width: 754px;
|
||||
font-size: 30px;
|
||||
line-height: 54px;
|
||||
border: 1px solid rgb(67, 82, 105);
|
||||
}
|
||||
|
||||
.popup .amenity .cart-list>#items>.tbl_record tbody tr>.products>#title {
|
||||
width: 50%;
|
||||
float: left;
|
||||
padding: 0px 0px 0px 20px;
|
||||
}
|
||||
|
||||
.popup .amenity .cart-list>#items>.tbl_record tbody tr>.products>#quantity {
|
||||
width: 20%;
|
||||
float: left;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.popup .amenity .cart-list>#items>.tbl_record tbody tr>.products>#price {
|
||||
width: 30%;
|
||||
float: left;
|
||||
text-align: right;
|
||||
padding: 0px 30px 0 0px;
|
||||
}
|
||||
|
||||
.popup .amenity .cart-list>#items>.tbl_record ::-webkit-scrollbar {
|
||||
display: block;
|
||||
width: 20px;
|
||||
/* 세로축 스크롤바 길이 */
|
||||
height: 20px;
|
||||
/* 가로축 스크롤바 길이 */
|
||||
}
|
||||
|
||||
.popup .amenity .cart-list>#items>.tbl_record ::-webkit-scrollbar-track {
|
||||
background-color: rgb(67, 82, 105);
|
||||
}
|
||||
|
||||
.popup .amenity .cart-list>#items>.tbl_record ::-webkit-scrollbar-track-piece {
|
||||
background-color: rgb(80, 98, 124);
|
||||
}
|
||||
|
||||
.popup .amenity .cart-list>#items>.tbl_record ::-webkit-scrollbar-thumb {
|
||||
border-radius: 8px;
|
||||
background-color: rgb(51, 63, 80);
|
||||
}
|
||||
|
||||
.popup .amenity .cart-list>#items>.tbl_record ::-webkit-scrollbar-button:start {
|
||||
display: none;
|
||||
/* background-color: orange; */
|
||||
/* Top, Left 방향의 이동버튼 */
|
||||
}
|
||||
|
||||
.popup .amenity .cart-list>#items>.tbl_record ::-webkit-scrollbar-button:end {
|
||||
display: none;
|
||||
/* background-color: orange; */
|
||||
/* Bottom, Right 방향의 이동버튼 */
|
||||
}
|
||||
|
||||
.popup .amenity .cart-list>#summary {
|
||||
height: 54px;
|
||||
font-size: 38px;
|
||||
line-height: 54px;
|
||||
background-color: rgb(51, 63, 80);
|
||||
margin: 5px 22px 5px 22px;
|
||||
border: 1px solid rgb(67, 82, 105);
|
||||
}
|
||||
|
||||
.popup .amenity .cart-list>#summary>#title {
|
||||
width: 30%;
|
||||
float: left;
|
||||
text-align: center;
|
||||
/* padding: 0% 5% 0 20%;*/
|
||||
}
|
||||
|
||||
.popup .amenity .cart-list>#summary>#quantity {
|
||||
width: 40%;
|
||||
float: left;
|
||||
text-align: center;
|
||||
padding: 0 0 0 142px;
|
||||
color: rgb(255, 192, 0);
|
||||
}
|
||||
|
||||
.popup .amenity .cart-list>#summary>#amount {
|
||||
width: 30%;
|
||||
float: left;
|
||||
text-align: right;
|
||||
color: rgb(255, 192, 0);
|
||||
padding: 0px 30px 0px 0px;
|
||||
}
|
||||
|
||||
.popup .amenity .cart-list>#notice {
|
||||
font-size: 22px;
|
||||
line-height: 24px;
|
||||
margin: 10px 22px 5px 22px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.popup .amenity .cart-list>div#buttons {
|
||||
font-size: 38px;
|
||||
text-align: center;
|
||||
color: rgba(255, 255, 255, 1.0);
|
||||
margin: 15px 22px 5px 22px;
|
||||
}
|
||||
|
||||
.popup .amenity .cart-list>div#buttons>div {
|
||||
height: 38px;
|
||||
float: left;
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
.popup .amenity .cart-list>div#buttons>div div {
|
||||
height: 48px;
|
||||
border: 1px solid rgb(184, 184, 184);
|
||||
margin: 0px 25% 0px 25%;
|
||||
background-color: rgb(51, 63, 80);
|
||||
}
|
||||
|
||||
.popup .amenity .cart-list>div#buttons .active {
|
||||
border: 1px solid rgb(255, 192, 0);
|
||||
background-color: rgba(34, 42, 53, 1.0);
|
||||
}
|
||||
|
||||
.popup .amenity .cart-list>div#buttons #confirm {
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
.popup .amenity .cart-list>div#buttons #cancel {
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
|
||||
/* ROOM SERVICE -> ORDER Details */
|
||||
|
||||
.popup .amenity .order-details {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: rgb(36, 44, 56);
|
||||
/* display: block; */
|
||||
display: inline-block;
|
||||
color: rgb(255, 255, 255);
|
||||
}
|
||||
|
||||
.popup .amenity .order-details>#title {
|
||||
/* width: 466px; */
|
||||
height: 45px;
|
||||
line-height: 36px;
|
||||
overflow: hidden;
|
||||
font-size: 38px;
|
||||
text-align: left;
|
||||
margin: 10px 20px 5px 30px;
|
||||
}
|
||||
|
||||
.popup .amenity .order-details>#usage {
|
||||
height: 80px;
|
||||
line-height: 22px;
|
||||
font-size: 18px;
|
||||
text-align: left;
|
||||
margin: 5px 22px 5px 30px;
|
||||
/* border-bottom: 1px solid rgb(67, 82, 105); */
|
||||
white-space: pre-line;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.popup .amenity .order-details>#orders {
|
||||
height: 470px;
|
||||
overflow-y: hidden;
|
||||
overflow-x: hidden;
|
||||
margin: 5px 30px 5px 30px;
|
||||
}
|
||||
|
||||
.popup .amenity .order-details>#orders>table {
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
.popup .amenity .order-details>#orders>.order_list {
|
||||
width: 100%;
|
||||
height: 485px;
|
||||
}
|
||||
|
||||
.popup .amenity .order-details>#orders>.order_list>tbody {
|
||||
height: 210px;
|
||||
}
|
||||
|
||||
.popup .amenity .order-details>#orders>.order_list>tbody>tr {
|
||||
height: 70px;
|
||||
max-height: 70px;
|
||||
border: 1px solid rgb(67, 82, 105);
|
||||
}
|
||||
|
||||
.popup .amenity .order-details>#orders>.order_list>tbody>tr.active {
|
||||
border: 2px solid rgb(255, 192, 0);
|
||||
/* background-color: rgba(67, 67, 67, 1); */
|
||||
/* box-shadow: 0px 0px 30px rgba(255, 192, 0, 1); */
|
||||
}
|
||||
|
||||
.popup .amenity .order-details>#orders>.order_list>tbody>tr>.ordering {
|
||||
height: 44px;
|
||||
max-height: 44px;
|
||||
background-color: rgb(51, 63, 80);
|
||||
}
|
||||
|
||||
.popup .amenity .order-details>#orders>.order_list>tbody>tr>.ordering>div {
|
||||
padding: 0px 0px 5px 0px;
|
||||
}
|
||||
|
||||
.popup .amenity .order-details>#orders>.order_list>tbody>tr>.ordering>#index {
|
||||
font-size: 30px;
|
||||
line-height: 32px;
|
||||
width: 5%;
|
||||
float: left;
|
||||
text-align: center;
|
||||
border-bottom: 1px solid;
|
||||
margin: 5px 0px 0px 2%;
|
||||
}
|
||||
|
||||
.popup .amenity .order-details>#orders>.order_list>tbody>tr>.ordering>#date {
|
||||
font-size: 30px;
|
||||
line-height: 32px;
|
||||
width: 37%;
|
||||
float: left;
|
||||
border-bottom: 1px solid;
|
||||
margin: 5px 0px 0px 0;
|
||||
}
|
||||
|
||||
.popup .amenity .order-details>#orders>.order_list>tbody>tr>.ordering>#orderId {
|
||||
font-size: 28px;
|
||||
line-height: 32px;
|
||||
width: 53%;
|
||||
float: left;
|
||||
/* text-align: right; */
|
||||
margin: 5px 2% 0px 0%;
|
||||
}
|
||||
|
||||
|
||||
/* */
|
||||
|
||||
.popup .amenity .order-details>#orders>.order_list>tbody>tr>.OdItemLst {
|
||||
width: 100%;
|
||||
float: left;
|
||||
background-color: rgb(51, 63, 80);
|
||||
margin: 0px 0px 5px 0px;
|
||||
}
|
||||
|
||||
.popup .amenity .order-details>#orders>.order_list>tbody>tr>.OdItemLst .tbl_header {
|
||||
width: 100%;
|
||||
font-size: 36px;
|
||||
line-height: 36px;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
.popup .amenity .order-details>#orders>.order_list>tbody>tr>.OdItemLst .tbl_header>tbody {
|
||||
/* */
|
||||
}
|
||||
|
||||
.popup .amenity .order-details>#orders>.order_list>tbody>tr>.OdItemLst .tbl_header tr {
|
||||
font-size: 30px;
|
||||
}
|
||||
|
||||
.popup .amenity .order-details>#orders>.order_list>tbody>tr>.OdItemLst .tbl_header #type {
|
||||
width: 40%;
|
||||
font-size: 25px;
|
||||
text-align: left;
|
||||
padding: 0px 0px 0px 90px;
|
||||
}
|
||||
|
||||
.popup .amenity .order-details>#orders>.order_list>tbody>tr>.OdItemLst .tbl_header #quantity {
|
||||
width: 10%;
|
||||
font-size: 25px;
|
||||
}
|
||||
|
||||
.popup .amenity .order-details>#orders>.order_list>tbody>tr>.OdItemLst .tbl_header #amount {
|
||||
width: 20%;
|
||||
font-size: 25px;
|
||||
text-align: right;
|
||||
padding: 0px 30px 0px 0px;
|
||||
}
|
||||
|
||||
.popup .amenity .order-details>#orders>.order_list>tbody>tr>.OdItemLst .tbl_header #subtotal1 {}
|
||||
|
||||
.popup .amenity .order-details>#orders>.order_list>tbody>tr>.OdItemLst .tbl_header #subtotal2 {
|
||||
color: rgb(255, 192, 0);
|
||||
}
|
||||
|
||||
.popup .amenity .order-details>#orders>.order_list>tbody>tr>.OdItemLst .tbl_header #subtotal3 {}
|
||||
|
||||
.popup .amenity .order-details>#orders>.order_list>tbody>tr>.OdItemLst .tbl_header #subtotal4 {
|
||||
color: rgb(255, 192, 0);
|
||||
}
|
||||
|
||||
.popup .amenity .order-details>#orders>.order_list>tbody>tr>.OdItemLst .tbl_header #subtotal5 {}
|
||||
|
||||
.popup .amenity .order-details>#orders>.order_list>tbody>tr>.OdItemLst .tbl_record {
|
||||
width: 100%;
|
||||
font-size: 36px;
|
||||
line-height: 36px;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
.popup .amenity .order-details>#orders>.order_list>tbody>tr>.OdItemLst .tbl_record>tbody {}
|
||||
|
||||
.popup .amenity .order-details>#orders>.order_list>tbody>tr>.OdItemLst .tbl_record tr {}
|
||||
|
||||
.popup .amenity .order-details>#orders>.order_list>tbody>tr>.OdItemLst .tbl_record tr>.oditem {}
|
||||
|
||||
.popup .amenity .order-details>#orders>.order_list>tbody>tr>.OdItemLst .tbl_record tr>.oditem div {
|
||||
float: left;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.popup .amenity .order-details>#orders>.order_list>tbody>tr>.OdItemLst .tbl_record tr>.oditem div#name {
|
||||
width: 40%;
|
||||
text-align: left;
|
||||
padding: 0px 0px 0px 90px;
|
||||
}
|
||||
|
||||
.popup .amenity .order-details>#orders>.order_list>tbody>tr>.OdItemLst .tbl_record tr>.oditem div#quantity {
|
||||
width: 10%;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.popup .amenity .order-details>#orders>.order_list>tbody>tr>.OdItemLst .tbl_record tr>.oditem div#amount {
|
||||
width: 20%;
|
||||
text-align: right;
|
||||
padding: 0px 20px 0px 0px;
|
||||
}
|
||||
|
||||
.popup .amenity .order-details>#summary {
|
||||
height: 54px;
|
||||
line-height: 50px;
|
||||
overflow: hidden;
|
||||
font-size: 38px;
|
||||
text-align: left;
|
||||
margin: 15px 20px 5px 30px;
|
||||
background-color: rgb(51, 63, 80);
|
||||
}
|
||||
|
||||
.popup .amenity .order-details>#summary>div {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.popup .amenity .order-details>#summary>#title {
|
||||
width: 40%;
|
||||
padding: 0px 0px 0px 90px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.popup .amenity .order-details>#summary>#quantity {
|
||||
width: 10%;
|
||||
text-align: center;
|
||||
color: rgb(255, 192, 0);
|
||||
}
|
||||
|
||||
.popup .amenity .order-details>#summary>#amount {
|
||||
width: 20%;
|
||||
text-align: right;
|
||||
padding: 0px 20px 0px 0px;
|
||||
color: rgb(255, 192, 0);
|
||||
}
|
||||
|
||||
|
||||
/* ROOM SERVICE -> ALRET */
|
||||
|
||||
.popup .amenity .alert {
|
||||
position: absolute;
|
||||
top: 197px;
|
||||
left: 340px;
|
||||
width: 600px;
|
||||
height: 325px;
|
||||
color: rgb(255, 255, 255);
|
||||
}
|
||||
|
||||
.popup .amenity .alert>div#order-complete {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: rgb(36, 44, 56);
|
||||
border: 1px solid rgb(255, 255, 255);
|
||||
}
|
||||
|
||||
.popup .amenity .alert>div#order-complete>div#title {
|
||||
float: left;
|
||||
width: 100%;
|
||||
height: 54px;
|
||||
background-color: rgb(51, 63, 80);
|
||||
margin: 42px 0px 0 0px;
|
||||
font-size: 38px;
|
||||
line-height: 52px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.popup .amenity .alert>div#order-complete>div#message {
|
||||
width: 95%;
|
||||
float: left;
|
||||
margin: 40px 20px 5px 20px;
|
||||
font-size: 22px;
|
||||
line-height: 24px;
|
||||
text-align: center;
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user