Pārlūkot izejas kodu

공지사항 팝업 수정

whakdo963 2 gadi atpakaļ
vecāks
revīzija
e8b815f249

+ 38 - 12
src/main/webapp/mobile/app/main.html

@@ -110,22 +110,48 @@
110 110
 				<div class="itp_note_header">
111 111
 					<h1>> 공지사항</h1>
112 112
 				</div>
113
+				<div id="ITP_MODAL_NOTE_INFO" class="itp_note_popup modal itp_modal" style="display:block">
114
+					<div class="popup_note">
115
+						<div class="header">
116
+							<div class="header_left">
117
+								<label>매장</label>
118
+							</div>
119
+							<div class="header_right">
120
+								<button type="button" id="ITP_BTN_MAIN_POP_NOTE_CLOSE"><img src="../img/close.png"></button>
121
+							</div>
122
+						</div>
123
+						<div class="itp_pop_note_area">
124
+							<div class="itp_note_title">
125
+								<label>공지제목</label>
126
+								<span>:</span>
127
+								<div class="fnNoteNm">fasdddddddddddddddddddddddddddddddddddd</div>
128
+							</div>
129
+							<div class="itp_pop_note_content">
130
+								<div class="fnNote">fasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasd</div>
131
+							</div>
132
+						</div>
133
+					</div>
134
+				</div>
113 135
 				<div class="itp_note_bar" style="display: none;">
114 136
 					<h1>등록된 게시물이 없습니다.</h1>
115 137
 				</div>
116
-				<div class="itp_note_bar" style="display: block;">
117
-					<li>
118
-						<div class="itp_note_info">
119
-							<label>공지제목</label>
120
-							<span>:</span>
121
-							<div class="under fnNoteTitle">공지제목 테스트 ㅁㄴㅇㄻㄴㅇㄻ</div>
122
-						</div>
123
-						<div class="itp_note_info">
124
-							<label>공지일</label>
125
-							<span>:</span>
126
-							<div class="fnNoteDt">2020.20.20</div>
138
+				<div class="itp_note_bar">
139
+					<ul id="ITP_NOTE_ROW" class="mb_0 panel-group itp_nav">
140
+						<div id="ITP_NOTE_ROWCOPY" style="display: block;">
141
+							<li>
142
+								<div class="itp_note_info">
143
+									<label>공지제목</label>
144
+									<span>:</span>
145
+									<div class="under fnNoteTitle">공지제목 테스트 ㅁㄴㅇㄻㄴㅇㄻ</div>
146
+								</div>
147
+								<div class="itp_note_info">
148
+									<label>공지일</label>
149
+									<span>:</span>
150
+									<div class="fnNoteDt">2020.20.20</div>
151
+								</div>
152
+							</li>
127 153
 						</div>
128
-					</li>
154
+					</ul>
129 155
 				</div>
130 156
 				<div class="itp_note_header">
131 157
 					<h1>> 운영정보</h1>

+ 20 - 1
src/main/webapp/mobile/css/style.css

@@ -672,7 +672,26 @@ button.close {-webkit-appearance: none; padding: 0; cursor: pointer; background:
672 672
 #ITP_MAIN_CONTAINER .itp_oper_info_area .itp_oper_info div{text-overflow:ellipsis; overflow:hidden; white-space:nowrap; text-align: right; width:calc(100% - 114px);}
673 673
 #ITP_MAIN_CONTAINER .itp_graph_area {width:98%; height:300px; border:1px solid #aaa; margin:5px 1%;}
674 674
 #ITP_MAIN_CONTAINER .itp_graph_area .itp_graph_header {width:220px; margin:5px;}
675
-#ITP_MAIN_CONTAINER .itp_graph_area .itp_graph_header label {width:80px; font-size:14pt;}
675
+#ITP_MAIN_CONTAINER .itp_graph_area .itp_graph_header label {width:80px; font-size:14pt; text-align:left;}
676 676
 #ITP_MAIN_CONTAINER .itp_graph_area .itp_graph_header select {}
677 677
 #ITP_MAIN_CONTAINER #ITP_GRAPH_INFO {height:265px;}
678
+/* 공지사항 팝업추가 */
679
+.itp_note_popup {position: absolute; top:46px; width: 100%; height: calc(100vh - 49px); background: rgba(200, 200,200, 0.8); z-index: 11;}
680
+.itp_note_popup .popup_note {position:relative; top:20px; width:96%; margin:0 2%;}
681
+.itp_note_popup .popup_note .header {position: relative; height: 40px; background: #f0831e; color:#eee; border: 1px solid #000; border-top-right-radius: 10px; border-top-left-radius: 10px;}
682
+.itp_note_popup .popup_note .header .header_left {padding-top: 12px;}
683
+.itp_note_popup .popup_note .header .header_left label {font-size: 16px; font-weight:100;} 
684
+.itp_note_popup .popup_note .header .header_right {float: right; padding-right: 10px; position:relative; top:-44px;}
685
+.itp_note_popup .popup_note .header .header_right button {border: none; background: transparent; margin:3px -5px;}
686
+.itp_note_popup .popup_note .header .header_right button img {width:22px;}
687
+.itp_note_popup .popup_note .itp_pop_note_area {background:#fff; height:70vh; border:1px solid #000; border-top:none;}
688
+.itp_note_popup .popup_note .itp_pop_note_area .itp_note_title { display:flex; padding:10px; width:85%; height:45px;}
689
+.itp_note_popup .popup_note .itp_pop_note_area .itp_note_title label {width:60px; font-size:12pt;}
690
+.itp_note_popup .popup_note .itp_pop_note_area .itp_note_title span {width:10px;}
691
+.itp_note_popup .popup_note .itp_pop_note_area .itp_note_title div {text-overflow:ellipsis; overflow:hidden; white-space:nowrap; text-align:left; width:calc(100% - 70px);}
692
+.itp_note_popup .popup_note .itp_pop_note_area .itp_pop_note_content {border:1px solid #aaa; width:98%; height:calc(100% - 60px); margin:0 1%; padding:8px;}
693
+.itp_note_popup .popup_note .itp_pop_note_area .itp_pop_note_content div {height:100%; word-break:break-all;}
694
+
695
+
696
+
678 697