fix : open api , 공지사항 반응형 퍼블리싱
This commit is contained in:
@@ -693,7 +693,7 @@ hr {
|
||||
--accent-orange: #FF6B6B;
|
||||
--accent-green: #6BCF7F;
|
||||
--accent-purple: #A78BFA;
|
||||
--accent-color:#efdcb2;
|
||||
--accent-color: #efdcb2;
|
||||
--accent-light: #E9F9FF;
|
||||
--text-dark: #1A1A2E;
|
||||
--text-gray: #64748B;
|
||||
@@ -1490,7 +1490,7 @@ body.design-survey-active .global-header {
|
||||
.nav-menu {
|
||||
display: flex;
|
||||
list-style: none;
|
||||
gap: 36px;
|
||||
gap: 28px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
@@ -1545,7 +1545,7 @@ body.design-survey-active .global-header {
|
||||
font-size: 16px;
|
||||
font-weight: 500;
|
||||
color: var(--text-gray);
|
||||
padding: 8px 0;
|
||||
padding: 8px;
|
||||
position: relative;
|
||||
transition: var(--transition-smooth);
|
||||
}
|
||||
@@ -6028,7 +6028,7 @@ select.form-control {
|
||||
width: 100%;
|
||||
}
|
||||
.board-table .board-table-row .row-cell--title .notice-title-link:hover {
|
||||
text-decoration: underline;
|
||||
font-weight: 600;
|
||||
}
|
||||
.board-table .board-table-row .row-cell--title .notice-title-link .notice-number {
|
||||
display: none;
|
||||
@@ -6521,7 +6521,8 @@ select.form-control {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
.pagination .pagination-btn i, .pagination .pagination-btn svg {
|
||||
.pagination .pagination-btn i,
|
||||
.pagination .pagination-btn svg {
|
||||
font-size: 14px;
|
||||
width: 14px;
|
||||
height: 14px;
|
||||
@@ -10226,32 +10227,38 @@ body.index-page-body {
|
||||
padding: 20px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 768px) {
|
||||
.api-market-container .service-sidebar {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
top: 0;
|
||||
height: 100vh;
|
||||
width: 280px;
|
||||
margin: 0;
|
||||
z-index: 1000;
|
||||
transform: translateX(-100%);
|
||||
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
||||
background: #ffffff;
|
||||
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
|
||||
padding: 80px 24px 30px;
|
||||
}
|
||||
.api-market-container .service-sidebar.mobile-open {
|
||||
transform: translateX(0);
|
||||
}
|
||||
.api-market-container .service-sidebar .service-nav {
|
||||
flex-direction: column !important;
|
||||
gap: 16px !important;
|
||||
border: none !important;
|
||||
padding: 0 !important;
|
||||
box-shadow: none !important;
|
||||
background: transparent !important;
|
||||
.api-market-container {
|
||||
/*
|
||||
.service-sidebar {
|
||||
@media (max-width: 768px) {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
top: 0;
|
||||
height: 100vh;
|
||||
width: 280px;
|
||||
margin: 0;
|
||||
z-index: 1000;
|
||||
transform: translateX(-100%);
|
||||
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
||||
background: #ffffff;
|
||||
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
|
||||
padding: 80px 24px 30px; // Clear header height if any
|
||||
|
||||
&.mobile-open {
|
||||
transform: translateX(0);
|
||||
}
|
||||
|
||||
.service-nav {
|
||||
flex-direction: column !important;
|
||||
gap: 16px !important;
|
||||
border: none !important;
|
||||
padding: 0 !important;
|
||||
box-shadow: none !important;
|
||||
background: transparent !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
*/
|
||||
}
|
||||
|
||||
.api-market-hero {
|
||||
@@ -10471,6 +10478,7 @@ body.index-page-body {
|
||||
|
||||
.api-market-content {
|
||||
flex: 1;
|
||||
width: 100%;
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
@@ -10491,35 +10499,7 @@ body.index-page-body {
|
||||
}
|
||||
|
||||
.api-mobile-toggle {
|
||||
display: none;
|
||||
position: fixed;
|
||||
bottom: 24px;
|
||||
right: 24px;
|
||||
width: 56px;
|
||||
height: 56px;
|
||||
border-radius: 50%;
|
||||
border: none;
|
||||
color: #FFFFFF;
|
||||
font-size: 24px;
|
||||
cursor: pointer;
|
||||
box-shadow: 0 8px 24px rgba(75, 155, 255, 0.15);
|
||||
z-index: 1051;
|
||||
transition: all 0.3s ease;
|
||||
background-color: #0049b4;
|
||||
}
|
||||
.api-mobile-toggle:hover {
|
||||
transform: scale(1.05);
|
||||
box-shadow: 0 16px 40px rgba(75, 155, 255, 0.2);
|
||||
}
|
||||
.api-mobile-toggle:active {
|
||||
transform: scale(0.95);
|
||||
}
|
||||
@media (max-width: 768px) {
|
||||
.api-mobile-toggle {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.api-market-header {
|
||||
@@ -11138,9 +11118,12 @@ body.index-page-body {
|
||||
overflow-x: hidden;
|
||||
}
|
||||
.api-market-content {
|
||||
max-width: 100vw;
|
||||
width: 100%;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
.api-card {
|
||||
height: 285px;
|
||||
}
|
||||
}
|
||||
.login-page {
|
||||
display: flex;
|
||||
@@ -18364,6 +18347,14 @@ input[type=checkbox]:checked + .custom-checkbox {
|
||||
color: #0a4ea3;
|
||||
border: 1px solid #b3d4ff;
|
||||
}
|
||||
.notice-type-badge.lg {
|
||||
height: 28px;
|
||||
width: auto;
|
||||
min-width: 50px;
|
||||
padding: 0 10px;
|
||||
font-size: 13px;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.notice-detail-title {
|
||||
font-size: 28px;
|
||||
@@ -18421,22 +18412,27 @@ input[type=checkbox]:checked + .custom-checkbox {
|
||||
.notice-attachment-link .attachment-filename {
|
||||
font-size: 14px;
|
||||
color: #666;
|
||||
word-break: break-all;
|
||||
}
|
||||
|
||||
.notice-detail-incident-info {
|
||||
.notice-detail-incident-info,
|
||||
.notice-detail-affected-info {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.notice-detail-incident-info .detail-table {
|
||||
.notice-detail-incident-info .detail-table,
|
||||
.notice-detail-affected-info .detail-table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
table-layout: fixed;
|
||||
border-top: none;
|
||||
border-bottom: 1px solid #e3e8f0;
|
||||
}
|
||||
.notice-detail-incident-info .detail-table tr {
|
||||
.notice-detail-incident-info .detail-table tr,
|
||||
.notice-detail-affected-info .detail-table tr {
|
||||
border-bottom: 1px solid #e3e8f0;
|
||||
}
|
||||
.notice-detail-incident-info .detail-table th {
|
||||
.notice-detail-incident-info .detail-table th,
|
||||
.notice-detail-affected-info .detail-table th {
|
||||
background: #f9f9f9;
|
||||
height: 43px;
|
||||
font-weight: 500;
|
||||
@@ -18444,12 +18440,114 @@ input[type=checkbox]:checked + .custom-checkbox {
|
||||
text-align: center;
|
||||
color: #000;
|
||||
}
|
||||
.notice-detail-incident-info .detail-table td {
|
||||
padding-left: 19px;
|
||||
.notice-detail-incident-info .detail-table td,
|
||||
.notice-detail-affected-info .detail-table td {
|
||||
padding: 10px 19px;
|
||||
font-size: 14px;
|
||||
color: #000;
|
||||
word-break: break-all;
|
||||
}
|
||||
@media (max-width: 768px) {
|
||||
.notice-detail-incident-info .detail-table,
|
||||
.notice-detail-affected-info .detail-table {
|
||||
display: block;
|
||||
}
|
||||
.notice-detail-incident-info .detail-table colgroup,
|
||||
.notice-detail-affected-info .detail-table colgroup {
|
||||
display: none;
|
||||
}
|
||||
.notice-detail-incident-info .detail-table tbody,
|
||||
.notice-detail-incident-info .detail-table tr,
|
||||
.notice-detail-incident-info .detail-table th,
|
||||
.notice-detail-incident-info .detail-table td,
|
||||
.notice-detail-affected-info .detail-table tbody,
|
||||
.notice-detail-affected-info .detail-table tr,
|
||||
.notice-detail-affected-info .detail-table th,
|
||||
.notice-detail-affected-info .detail-table td {
|
||||
display: block;
|
||||
width: 100% !important;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.notice-detail-incident-info .detail-table tr,
|
||||
.notice-detail-affected-info .detail-table tr {
|
||||
border-bottom: none;
|
||||
}
|
||||
.notice-detail-incident-info .detail-table th,
|
||||
.notice-detail-affected-info .detail-table th {
|
||||
text-align: left;
|
||||
background: #f8fafc;
|
||||
height: auto;
|
||||
padding: 10px 16px;
|
||||
border-bottom: 1px solid #e2e8f0;
|
||||
}
|
||||
.notice-detail-incident-info .detail-table td,
|
||||
.notice-detail-affected-info .detail-table td {
|
||||
padding: 12px 16px;
|
||||
border-bottom: 1px solid #e2e8f0;
|
||||
}
|
||||
}
|
||||
|
||||
.affected-apis-wrapper {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 10px;
|
||||
align-items: flex-start;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.affected-apis-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
gap: 8px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.affected-api-badge {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
padding: 6px 16px;
|
||||
background-color: #f3f6fa;
|
||||
border: 1px solid #e2e8f0;
|
||||
border-radius: 8px;
|
||||
font-size: 13px;
|
||||
color: #555555;
|
||||
white-space: nowrap;
|
||||
font-weight: 500;
|
||||
}
|
||||
.affected-api-badge strong {
|
||||
color: #0a4ea3;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.btn-affected-toggle {
|
||||
font-size: 13px;
|
||||
color: #ffffff;
|
||||
font-weight: 500;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
cursor: pointer;
|
||||
padding: 8px 16px;
|
||||
border-radius: 4px;
|
||||
background-color: #0049b4;
|
||||
border: none;
|
||||
transition: all 0.2s ease;
|
||||
align-self: flex-end;
|
||||
margin-top: 8px;
|
||||
line-height: normal;
|
||||
}
|
||||
.btn-affected-toggle:hover {
|
||||
background-color: #003685;
|
||||
}
|
||||
.btn-affected-toggle .arrow {
|
||||
font-size: 10px;
|
||||
display: inline-block;
|
||||
transition: transform 0.2s ease;
|
||||
}
|
||||
.btn-affected-toggle.active .arrow {
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
|
||||
.notice-detail-content {
|
||||
padding: 20px 0 60px 0;
|
||||
@@ -18507,35 +18605,8 @@ input[type=checkbox]:checked + .custom-checkbox {
|
||||
}
|
||||
|
||||
.btn-notice-list {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 247px;
|
||||
height: 60px;
|
||||
background: #2a69de;
|
||||
color: #fff;
|
||||
border: none;
|
||||
font-size: 20px;
|
||||
font-weight: 700;
|
||||
border-radius: 10px;
|
||||
cursor: pointer;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
@media (max-width: 1024px) {
|
||||
.btn-notice-list {
|
||||
width: auto;
|
||||
min-width: 120px;
|
||||
padding: 0 20px;
|
||||
height: 48px;
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
.btn-notice-list:hover {
|
||||
background: rgb(31.8731707317, 92.7219512195, 205.7268292683);
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
.btn-notice-list:active {
|
||||
transform: scale(0.98);
|
||||
}
|
||||
|
||||
.notice-detail-card {
|
||||
@@ -22637,12 +22708,39 @@ input[type=checkbox]:checked + .custom-checkbox {
|
||||
}
|
||||
.service-sidebar {
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
}
|
||||
.service-nav {
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
padding: 20px;
|
||||
flex-direction: row !important;
|
||||
flex-wrap: nowrap !important;
|
||||
justify-content: flex-start !important;
|
||||
padding: 16px 20px !important;
|
||||
overflow-x: auto !important;
|
||||
-webkit-overflow-scrolling: touch !important;
|
||||
gap: 24px !important;
|
||||
border: 1px solid #e3e8f0 !important;
|
||||
border-radius: 20px !important;
|
||||
box-shadow: none !important;
|
||||
background: #ffffff !important;
|
||||
}
|
||||
.service-nav::-webkit-scrollbar {
|
||||
display: none;
|
||||
}
|
||||
.service-nav {
|
||||
-ms-overflow-style: none;
|
||||
/* IE and Edge */
|
||||
scrollbar-width: none;
|
||||
/* Firefox */
|
||||
}
|
||||
.service-nav .service-sidebar__profile,
|
||||
.service-nav .service-sidebar__divider {
|
||||
display: none !important;
|
||||
}
|
||||
.service-nav .service-nav__item {
|
||||
flex-shrink: 0 !important;
|
||||
white-space: nowrap !important;
|
||||
margin: 0 !important;
|
||||
padding: 0 !important;
|
||||
}
|
||||
.service-hero,
|
||||
.oauth2-2legged__hero {
|
||||
@@ -23448,6 +23546,7 @@ input[type=checkbox]:checked + .custom-checkbox {
|
||||
background: #1A1A2E;
|
||||
overflow: hidden;
|
||||
min-width: 0;
|
||||
margin-top: 24px;
|
||||
}
|
||||
.oauth2-2legged__code-panel::before {
|
||||
content: "";
|
||||
|
||||
Reference in New Issue
Block a user