Files
new-api/web/src/index.css

150 lines
3.1 KiB
CSS
Raw Normal View History

2023-04-22 20:39:27 +08:00
body {
2024-03-23 21:24:39 +08:00
margin: 0;
padding-top: 55px;
overflow-y: scroll;
font-family: Lato, 'Helvetica Neue', Arial, Helvetica, 'Microsoft YaHei',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
scrollbar-width: none;
color: var(--semi-color-text-0) !important;
background-color: var(--semi-color-bg-0) !important;
2024-09-17 19:55:18 +08:00
height: 100vh;
2023-11-03 22:38:17 +08:00
}
#root {
2024-09-17 19:55:18 +08:00
height: 100vh;
flex-direction: column;
2023-11-03 22:38:17 +08:00
}
2024-12-11 17:19:03 +08:00
#root > section > header > section > div > div > div > div.semi-navigation-header-list-outer > div.semi-navigation-list-wrapper > ul > div > a > li > span{
font-weight: 600 !important;
}
.semi-descriptions-double-small .semi-descriptions-item {
padding-right: 30px;
}
2023-11-25 17:30:46 +08:00
@media only screen and (max-width: 767px) {
/*.semi-navigation-sub-wrap .semi-navigation-sub-title, .semi-navigation-item {*/
/* padding: 0 0;*/
/*}*/
.topnav .semi-navigation-list-wrapper {
max-width: calc(55vw - 20px);
overflow-x: auto;
scrollbar-width: none;
}
#root > section > header > section > div > div > div > div.semi-navigation-footer > div > a > li {
padding: 0 0;
}
#root > section > header > section > div > div > div > div.semi-navigation-header-list-outer > div.semi-navigation-list-wrapper > ul > div > a > li {
padding: 0 5px;
}
#root > section > header > section > div > div > div > div.semi-navigation-footer > div:nth-child(1) > a > li {
padding: 0 5px;
}
.semi-navigation-footer {
padding-left: 0;
padding-right: 0;
}
2024-03-23 21:24:39 +08:00
.semi-table-tbody,
.semi-table-row,
.semi-table-row-cell {
display: block !important;
width: auto !important;
padding: 2px !important;
}
.semi-table-row-cell {
border-bottom: 0 !important;
}
.semi-table-tbody > .semi-table-row {
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.semi-space {
/*display: block!important;*/
display: flex;
flex-direction: row;
flex-wrap: wrap;
row-gap: 3px;
column-gap: 10px;
}
2024-12-11 17:19:03 +08:00
.semi-navigation-horizontal .semi-navigation-header {
margin-right: 0;
}
2023-11-25 17:30:46 +08:00
}
2024-03-11 21:08:51 +08:00
.semi-table-tbody > .semi-table-row > .semi-table-row-cell {
2024-03-23 21:24:39 +08:00
padding: 16px 14px;
2024-03-11 21:08:51 +08:00
}
.channel-table {
2024-03-23 21:24:39 +08:00
.semi-table-tbody > .semi-table-row > .semi-table-row-cell {
padding: 16px 8px;
}
2024-03-11 21:08:51 +08:00
}
2024-09-17 19:55:18 +08:00
/*.semi-layout {*/
/* height: 100%;*/
/*}*/
2023-05-14 16:02:40 +08:00
2023-10-31 17:31:22 +08:00
.tableShow {
2024-03-23 21:24:39 +08:00
display: revert;
2023-10-31 17:31:22 +08:00
}
2024-09-26 00:59:09 +08:00
.semi-chat {
padding-top: 0 !important;
padding-bottom: 0 !important;
height: 100%;
}
2024-09-27 20:49:15 +08:00
.semi-chat-chatBox-content {
min-width: auto;
word-break: break-word;
}
2023-10-31 17:31:22 +08:00
.tableHiddle {
2024-03-23 21:24:39 +08:00
display: none !important;
2023-10-31 17:31:22 +08:00
}
2023-05-14 16:02:40 +08:00
body::-webkit-scrollbar {
2024-03-23 21:24:39 +08:00
display: none;
2023-04-22 20:39:27 +08:00
}
code {
2024-03-23 21:24:39 +08:00
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
2023-04-22 20:39:27 +08:00
}
2023-10-31 00:03:22 +08:00
.semi-navigation-item {
2024-03-23 21:24:39 +08:00
margin-bottom: 0;
2023-10-31 00:03:22 +08:00
}
.semi-navigation-vertical {
2024-03-23 21:24:39 +08:00
/*flex: 0 0 auto;*/
/*display: flex;*/
/*flex-direction: column;*/
/*width: 100%;*/
height: 100%;
overflow: hidden;
2023-10-31 00:03:22 +08:00
}
2023-04-22 20:39:27 +08:00
.main-content {
2024-03-23 21:24:39 +08:00
padding: 4px;
height: 100%;
2023-04-22 20:39:27 +08:00
}
.small-icon .icon {
2024-03-23 21:24:39 +08:00
font-size: 1em !important;
2023-04-22 20:39:27 +08:00
}
.custom-footer {
2024-03-23 21:24:39 +08:00
font-size: 1.1em;
2023-04-22 20:39:27 +08:00
}
@media only screen and (max-width: 600px) {
2024-03-23 21:24:39 +08:00
.hide-on-mobile {
display: none !important;
}
2023-04-22 20:39:27 +08:00
}