first commit

This commit is contained in:
huangjx
2021-09-09 22:03:08 +08:00
commit f2a2365102
74 changed files with 33916 additions and 0 deletions

35
css/autocomplete.css Normal file
View File

@@ -0,0 +1,35 @@
.suggestion-container {
text-align: left;
cursor : default;
border : 1px solid #ccc;
border-top: 0;
background: #fff;
box-shadow: -1px 1px 3px rgba(0, 0, 0, .1);
position : absolute;
display : none;
z-index : 9999;
max-height: 254px;
overflow : hidden;
overflow-y: auto;
box-sizing: border-box;
}
.suggestion-item {
position : relative;
padding : 0 .6em;
line-height : 23px;
white-space : nowrap;
overflow : hidden;
text-overflow: ellipsis;
font-size : 1.02em;
color : #333;
}
.suggestion-item b {
font-weight: normal;
color : #1f8dd6;
}
.suggestion-item.selected {
background: #f0f0f0;
}

262
css/style.css Normal file
View File

@@ -0,0 +1,262 @@
.action-item {
position: relative;
}
a {
color : #337ab7;
text-decoration: none;
}
a:hover,
a:focus {
color : #23527c;
text-decoration: underline;
}
a:focus {
outline : 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
#ncdownloader-form-wrapper input {
display: block;
}
div .number {
background : none repeat scroll 0 0 #5f5853;
border-radius: 999px;
color : #FFFFFF;
display : inline-block;
font-size : 15px;
font-style : italic;
height : 20px;
line-height : 20px;
margin-right : 10px;
padding : 0 8px;
}
#ncdownloader-form-wrapper input[type=text] {
padding: 0px 5px;
width : 100%;
}
#ncdownloader-table-data .table-cell {
padding-left: 4px;
}
.icon-power {
background-image: url('../img/power.svg');
}
.icon-purge {
background-image: url('../img/trash.svg');
}
.icon-unpause {
background-image: url('../img/play.svg');
}
#ncdownloader-action-links-container {
position: relative;
}
#ncdownloader-action-links-container ul {
background-color: #ededed;
}
#ncdownloader-action-links-container .action-link-item a:hover {
background-color: #c2afaf;
}
#ncdownloader-message-banner.success,
.message-banner.success {
color : #3c763d;
background-color: #dff0d8;
border-color : #d6e9c6;
width : fit-content;
}
#ncdownloader-message-banner.error,
.message-banner.error {
color : #a94442;
background-color: #f2dede;
border-color : #ebccd1;
width : fit-content;
}
.action-links {
/*visibility: hidden;*/
display : none;
position : absolute;
background-color: #f1f1f1;
min-width : 60px;
box-shadow : 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index : 9999;
}
.action-link-item a {
color : black;
padding : 6px 6px;
text-decoration: none;
display : block;
}
.app-ncdownloader,
#ncdownloader-content {
width: 100%;
}
.ncdownloader-content-wrapper {
width : 100%;
padding-top: 0.3em;
}
#ncdownloader-form-wrapper {
width: 100%;
}
#ncdownloader-table-content {
width: 100%;
}
.app-ncdownloader #app-content #app-content-wrapper {
flex-wrap: wrap;
}
#app-content-wrapper #ncdownloader-table-content thead>tr {
height : 30px;
background-color: #eee;
}
#app-content-wrapper #ncdownloader-table-content thead>tr>th {
font-style : italic;
font-weight : bold;
padding : 2px 0 2px 5px;
border-bottom: 1px solid #ddd;
text-align : left;
}
#ncdownloader-table-content thead.table-heading th {
border-left: 1px solid rgb(216, 202, 202);
}
#app-content-wrapper #ncdownloader-table-content .table-cell {
border-bottom: 1px solid #9d9595;
border-left : 1px solid #eee;
}
.app-navigation-entry-bullet {
background-color: rgb(80, 80, 173);
}
.notinstalled {
color: red;
}
@media only screen and (min-width: 800px) {}
@media only screen and (max-width: 1024px) {
#ncdownloader-form-wrapper {
position : relative;
margin-top: 2em;
}
}
/* from bootstrap */
.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
position : absolute !important;
width : 1px !important;
height : 1px !important;
padding : 0 !important;
margin : -1px !important;
overflow : hidden !important;
clip : rect(0, 0, 0, 0) !important;
white-space: nowrap !important;
border : 0 !important;
}
@-webkit-keyframes spinner-border {
to {
transform: rotate(360deg)
/* rtl :ignore */
;
}
}
@keyframes spinner-border {
to {
transform: rotate(360deg)
/* rtl :ignore */
;
}
}
.spinner-border {
display : inline-block;
width : 2rem;
height : 2rem;
vertical-align : -0.125em;
border : 0.25em solid currentColor;
border-right-color: transparent;
border-radius : 50%;
-webkit-animation : 0.75s linear infinite spinner-border;
animation : 0.75s linear infinite spinner-border;
}
.spinner-border-sm {
width : 1rem;
height : 1rem;
border-width: 0.2em;
}
@-webkit-keyframes spinner-grow {
0% {
transform: scale(0);
}
50% {
opacity : 1;
transform: none;
}
}
@keyframes spinner-grow {
0% {
transform: scale(0);
}
50% {
opacity : 1;
transform: none;
}
}
.spinner-grow {
display : inline-block;
width : 2rem;
height : 2rem;
vertical-align : -0.125em;
background-color : currentColor;
border-radius : 50%;
opacity : 0;
-webkit-animation: 0.75s linear infinite spinner-grow;
animation : 0.75s linear infinite spinner-grow;
}
.spinner-grow-sm {
width : 1rem;
height: 1rem;
}
@media (prefers-reduced-motion: reduce) {
.spinner-border,
.spinner-grow {
-webkit-animation-duration: 1.5s;
animation-duration : 1.5s;
}
}

81
css/table.css Normal file
View File

@@ -0,0 +1,81 @@
#ncdownloader-table-wrapper {
display: flex;
flex-flow: column nowrap;
background-color: white;
width: 100%;
margin: 0 auto;
border-radius: 4px;
/*border : 1px solid #DADADA;*/
box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.08);
justify-content: center;
align-items: center;
background-color: #fafafa; }
#ncdownloader-table-wrapper .table-row,
#ncdownloader-table-wrapper .table-row-search {
display: flex;
flex-flow: row nowrap;
width: 100%;
border-bottom: 1px solid #dadada; }
#ncdownloader-table-wrapper section.table-body,
#ncdownloader-table-wrapper section.table-heading {
width: 100%;
display: flex;
flex-flow: column nowrap; }
#ncdownloader-table-wrapper .table-row,
#ncdownloader-table-wrapper .table-row-search {
display: flex;
flex-flow: row nowrap;
width: 100%;
border-bottom: 1px solid #dadada; }
#ncdownloader-table-wrapper .table-heading .table-row,
#ncdownloader-table-wrapper .table-heading .table-row-search {
background-color: #ececec;
color: #3e3e3e;
font-weight: bold; }
#ncdownloader-table-wrapper .table-heading .table-cell:hover {
cursor: pointer;
background-color: #c4afaf;
/* box-shadow : 0px 1px 4px rgba(0, 0, 0, .08); */ }
#ncdownloader-table-wrapper .table-cell {
display: flex;
flex-flow: column wrap;
flex: 1;
font-size: 14px;
padding: 8px 3px;
justify-content: left;
align-items: left;
transition: all 0.15s ease-in-out; }
#ncdownloader-table-wrapper .table-cell:first-child {
flex: 1 1 30%; }
#ncdownloader-table-wrapper .table-cell:last-child {
flex: 0 1 7%; }
#ncdownloader-table-wrapper #table-cell-status,
#ncdownloader-table-wrapper .table-heading-status {
flex: 0 1 15%;
overflow: hidden;
text-overflow: ellipsis; }
#ncdownloader-table-wrapper .table-cell:hover {
cursor: pointer;
background-color: #F0F0F0;
/* box-shadow : 0px 1px 4px rgba(0, 0, 0, .08); */ }
#ncdownloader-table-wrapper .row-sub-container {
display: flex;
flex-flow: column nowrap;
flex: 1; }
#ncdownloader-table-wrapper .row-sub-container .table-cell {
padding: 8px 0;
border-bottom: 1px solid #dadada; }
#ncdownloader-table-wrapper .table-row:last-child,
#ncdownloader-table-wrapper .row-sub-container .table-cell:last-child {
border-bottom: 0; }
@media only screen and (max-width: 1024px) {
#ncdownloader-table-wrapper #ncdownloader-form-wrapper {
position: relative;
margin-top: 2em; }
#ncdownloader-table-wrapper .table-cell:first-child {
flex: 1 0 250px;
overflow: hidden;
text-overflow: ellipsis; }
#ncdownloader-table-wrapper .table-cell:last-child {
flex: 1 1 7%; } }

123
css/table.scss Normal file
View File

@@ -0,0 +1,123 @@
#ncdownloader-table-wrapper {
display : flex;
flex-flow : column nowrap;
background-color: white;
width : 100%;
margin : 0 auto;
border-radius : 4px;
/*border : 1px solid #DADADA;*/
box-shadow : 0px 1px 4px rgba(0, 0, 0, .08);
justify-content : center;
align-items : center;
background-color: #fafafa;
.table-row,
.table-row-search {
display : flex;
flex-flow : row nowrap;
width : 100%;
border-bottom: 1px solid #dadada;
}
section.table-body,
section.table-heading {
width : 100%;
display : flex;
flex-flow: column nowrap;
}
.table-row,
.table-row-search {
display : flex;
flex-flow : row nowrap;
width : 100%;
border-bottom: 1px solid #dadada;
}
.table-heading {
.table-row,
.table-row-search {
background-color: #ececec;
color : #3e3e3e;
font-weight : bold;
}
.table-cell:hover {
cursor : pointer;
background-color: #c4afaf;
/* box-shadow : 0px 1px 4px rgba(0, 0, 0, .08); */
}
}
.table-cell {
display : flex;
flex-flow : column wrap;
flex : 1;
font-size : 14px;
padding : 8px 3px;
justify-content: left;
align-items : left;
transition : all 0.15s ease-in-out;
}
.table-cell:first-child {
flex: 1 1 30%;
}
.table-cell:last-child {
flex: 0 1 7%;
}
#table-cell-status,
.table-heading-status {
flex : 0 1 15%;
overflow : hidden;
text-overflow: ellipsis;
}
.table-cell:hover {
cursor : pointer;
background-color: #F0F0F0;
/* box-shadow : 0px 1px 4px rgba(0, 0, 0, .08); */
}
.row-sub-container {
display : flex;
flex-flow: column nowrap;
flex : 1;
}
.row-sub-container .table-cell {
padding : 8px 0;
border-bottom: 1px solid #dadada;
}
.table-row:last-child,
.row-sub-container .table-cell:last-child {
border-bottom: 0;
}
}
@media only screen and (max-width: 1024px) {
#ncdownloader-table-wrapper {
#ncdownloader-form-wrapper {
position : relative;
margin-top: 2em;
}
.table-cell:first-child {
flex : 1 0 250px;
overflow : hidden;
text-overflow: ellipsis;
}
.table-cell:last-child {
flex: 1 1 7%;
}
}
}