generated from smedev/Template-for-SMEServer-Contribs-Package
Initial code
This commit is contained in:
@@ -0,0 +1,266 @@
|
||||
div.dtsr-confirmation,
|
||||
div.dtsr-creation {
|
||||
position: fixed;
|
||||
top: 20%;
|
||||
left: 50%;
|
||||
width: 500px;
|
||||
margin-left: -250px;
|
||||
background-color: white;
|
||||
border-radius: 0.75em;
|
||||
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
|
||||
z-index: 2003;
|
||||
box-sizing: border-box;
|
||||
padding: 2em;
|
||||
}
|
||||
div.dtsr-confirmation button,
|
||||
div.dtsr-creation button {
|
||||
display: inline-block;
|
||||
margin: 1em;
|
||||
padding: 0.5em 1em;
|
||||
border-radius: 0.5em;
|
||||
border: 1px solid rgba(0, 0, 0, 0.175);
|
||||
background-color: #f6f6f6;
|
||||
text-align: left;
|
||||
cursor: pointer;
|
||||
}
|
||||
div.dtsr-confirmation button:hover,
|
||||
div.dtsr-creation button:hover {
|
||||
background-color: #ebebeb;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-text,
|
||||
div.dtsr-confirmation div.dtsr-confirmation-title-row,
|
||||
div.dtsr-creation div.dtsr-creation-text,
|
||||
div.dtsr-creation div.dtsr-confirmation-title-row {
|
||||
text-align: left;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-text h2,
|
||||
div.dtsr-confirmation div.dtsr-confirmation-title-row h2,
|
||||
div.dtsr-creation div.dtsr-creation-text h2,
|
||||
div.dtsr-creation div.dtsr-confirmation-title-row h2 {
|
||||
border-bottom: 0px;
|
||||
margin-top: 0px;
|
||||
padding-top: 0px;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-confirmation-text,
|
||||
div.dtsr-creation div.dtsr-confirmation-text {
|
||||
text-align: center;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-modal-foot,
|
||||
div.dtsr-confirmation div.dtsr-confirmation-buttons,
|
||||
div.dtsr-creation div.dtsr-modal-foot,
|
||||
div.dtsr-creation div.dtsr-confirmation-buttons {
|
||||
text-align: right;
|
||||
margin-top: 1em;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-modal-foot button,
|
||||
div.dtsr-confirmation div.dtsr-confirmation-buttons button,
|
||||
div.dtsr-creation div.dtsr-modal-foot button,
|
||||
div.dtsr-creation div.dtsr-confirmation-buttons button {
|
||||
margin: 0px;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-text,
|
||||
div.dtsr-creation div.dtsr-creation-text {
|
||||
text-align: left;
|
||||
padding: 0px;
|
||||
border: none;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-text span,
|
||||
div.dtsr-creation div.dtsr-creation-text span {
|
||||
font-size: 20px;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-left, div.dtsr-confirmation div.dtsr-creation-form div.dtsr-right,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-left,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-right {
|
||||
display: inline-block;
|
||||
width: 50%;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-left,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-left {
|
||||
text-align: right;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-right, div.dtsr-confirmation div.dtsr-creation-form div.dtsr-name-row,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-right,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-name-row {
|
||||
text-align: left;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-form-row,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-form-row {
|
||||
margin: 0.5em 0;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-form-row:first-child,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-form-row:first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-form-row:last-child,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-form-row:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-form-row label.dtsr-name-label,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-form-row label.dtsr-name-label {
|
||||
width: 25%;
|
||||
display: inline-block;
|
||||
text-align: right;
|
||||
padding-right: 15px;
|
||||
padding-left: 15px;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-form-row input.dtsr-name-input,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-form-row input.dtsr-name-input {
|
||||
width: 66.6%;
|
||||
display: inline-block;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-form-row input.dtsr-check-box,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-form-row input.dtsr-check-box {
|
||||
margin-left: 25%;
|
||||
margin-right: 14px;
|
||||
display: inline-block;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-confirmation-text,
|
||||
div.dtsr-creation div.dtsr-confirmation-text {
|
||||
text-align: left;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-confirmation-text label.dtsr-name-label,
|
||||
div.dtsr-creation div.dtsr-confirmation-text label.dtsr-name-label {
|
||||
width: auto;
|
||||
display: inline-block;
|
||||
text-align: right;
|
||||
padding-right: 15px;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-confirmation-text input.dtsr-name-input,
|
||||
div.dtsr-creation div.dtsr-confirmation-text input.dtsr-name-input {
|
||||
width: 66.6%;
|
||||
display: inline-block;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-confirmation-text input.dtsr-check-box,
|
||||
div.dtsr-creation div.dtsr-confirmation-text input.dtsr-check-box {
|
||||
margin-left: 33.3%;
|
||||
margin-right: 14px;
|
||||
display: inline-block;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-modal-foot,
|
||||
div.dtsr-creation div.dtsr-modal-foot {
|
||||
text-align: right;
|
||||
padding-top: 10px;
|
||||
}
|
||||
div.dtsr-confirmation span.dtsr-modal-error,
|
||||
div.dtsr-creation span.dtsr-modal-error {
|
||||
color: red;
|
||||
font-size: 0.9em;
|
||||
}
|
||||
|
||||
div.dtsr-creation {
|
||||
top: 10%;
|
||||
}
|
||||
|
||||
div.dtsr-check-row {
|
||||
padding-top: 0px;
|
||||
}
|
||||
|
||||
div.dtsr-popover-close {
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
right: 10px;
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
text-align: center;
|
||||
border-radius: 3px;
|
||||
cursor: pointer;
|
||||
z-index: 12;
|
||||
}
|
||||
|
||||
div.dtsr-background {
|
||||
z-index: 2002;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: rgba(0, 0, 0, 0.7);
|
||||
background: radial-gradient(ellipse farthest-corner at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
|
||||
}
|
||||
|
||||
div.dt-button-collection h3 {
|
||||
text-align: center;
|
||||
margin-top: 4px;
|
||||
margin-bottom: 8px;
|
||||
font-size: 1.5em;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
div.dt-button-collection span.dtsr-emptyStates {
|
||||
border-radius: 5px;
|
||||
display: inline-block;
|
||||
line-height: 1.6em;
|
||||
white-space: nowrap;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
width: 100%;
|
||||
padding-bottom: 7px;
|
||||
padding-top: 3px;
|
||||
}
|
||||
|
||||
html.dark div.dtsr-confirmation,
|
||||
html.dark div.dtsr-creation,
|
||||
html[data-bs-theme=dark] div.dtsr-confirmation,
|
||||
html[data-bs-theme=dark] div.dtsr-creation {
|
||||
background-color: rgb(33, 37, 41);
|
||||
border: 1px solid rgba(255, 255, 255, 0.15);
|
||||
}
|
||||
html.dark div.dtsr-confirmation button,
|
||||
html.dark div.dtsr-creation button,
|
||||
html[data-bs-theme=dark] div.dtsr-confirmation button,
|
||||
html[data-bs-theme=dark] div.dtsr-creation button {
|
||||
color: inherit;
|
||||
border: 1px solid rgba(255, 255, 255, 0.175);
|
||||
background-color: rgb(47, 52, 56);
|
||||
}
|
||||
html.dark div.dtsr-confirmation button:hover,
|
||||
html.dark div.dtsr-creation button:hover,
|
||||
html[data-bs-theme=dark] div.dtsr-confirmation button:hover,
|
||||
html[data-bs-theme=dark] div.dtsr-creation button:hover {
|
||||
background-color: rgb(64, 69, 73);
|
||||
}
|
||||
|
||||
span.dtsr-check-label {
|
||||
padding-left: 3px;
|
||||
}
|
||||
|
||||
div.dt-button-collection h3 {
|
||||
margin-top: 8px;
|
||||
}
|
||||
div.dt-button-collection ul.dropdown-menu {
|
||||
padding-top: 0px;
|
||||
}
|
||||
div.dt-button-collection ul.dropdown-menu div.dt-btn-split-wrapper {
|
||||
width: 96% !important;
|
||||
margin-left: 4px !important;
|
||||
margin-top: 4px;
|
||||
}
|
||||
div.dt-button-collection ul.dropdown-menu div.dt-btn-split-wrapper button.btn {
|
||||
width: calc(100% - 32px);
|
||||
}
|
||||
div.dt-button-collection ul.dropdown-menu div.dt-btn-split-wrapper button.dt-btn-split-drop {
|
||||
width: 32px;
|
||||
}
|
||||
|
||||
div.dt-button-split-left div.dropdown-menu {
|
||||
padding-left: 4px;
|
||||
padding-right: 4px;
|
||||
padding-top: 0px;
|
||||
}
|
||||
div.dt-button-split-left div.dropdown-menu button.dt-btn-split-drop-button {
|
||||
background-color: white;
|
||||
border: 1px solid rgb(204, 204, 204);
|
||||
border-radius: 4px;
|
||||
margin-top: 4px;
|
||||
}
|
||||
div.dt-button-split-left div.dropdown-menu button.dt-btn-split-drop-button:hover {
|
||||
background-color: #f5f5f5;
|
||||
}
|
||||
|
||||
input.dtsr-input {
|
||||
display: inline-block;
|
||||
width: auto;
|
||||
margin-left: 3px;
|
||||
}
|
1
root/usr/share/javascript/StateRestore/css/stateRestore.bootstrap.min.css
vendored
Normal file
1
root/usr/share/javascript/StateRestore/css/stateRestore.bootstrap.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
@@ -0,0 +1,297 @@
|
||||
div.dtsr-confirmation,
|
||||
div.dtsr-creation {
|
||||
position: fixed;
|
||||
top: 20%;
|
||||
left: 50%;
|
||||
width: 500px;
|
||||
margin-left: -250px;
|
||||
background-color: white;
|
||||
border-radius: 0.75em;
|
||||
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
|
||||
z-index: 2003;
|
||||
box-sizing: border-box;
|
||||
padding: 2em;
|
||||
}
|
||||
div.dtsr-confirmation button,
|
||||
div.dtsr-creation button {
|
||||
display: inline-block;
|
||||
margin: 1em;
|
||||
padding: 0.5em 1em;
|
||||
border-radius: 0.5em;
|
||||
border: 1px solid rgba(0, 0, 0, 0.175);
|
||||
background-color: #f6f6f6;
|
||||
text-align: left;
|
||||
cursor: pointer;
|
||||
}
|
||||
div.dtsr-confirmation button:hover,
|
||||
div.dtsr-creation button:hover {
|
||||
background-color: #ebebeb;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-text,
|
||||
div.dtsr-confirmation div.dtsr-confirmation-title-row,
|
||||
div.dtsr-creation div.dtsr-creation-text,
|
||||
div.dtsr-creation div.dtsr-confirmation-title-row {
|
||||
text-align: left;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-text h2,
|
||||
div.dtsr-confirmation div.dtsr-confirmation-title-row h2,
|
||||
div.dtsr-creation div.dtsr-creation-text h2,
|
||||
div.dtsr-creation div.dtsr-confirmation-title-row h2 {
|
||||
border-bottom: 0px;
|
||||
margin-top: 0px;
|
||||
padding-top: 0px;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-confirmation-text,
|
||||
div.dtsr-creation div.dtsr-confirmation-text {
|
||||
text-align: center;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-modal-foot,
|
||||
div.dtsr-confirmation div.dtsr-confirmation-buttons,
|
||||
div.dtsr-creation div.dtsr-modal-foot,
|
||||
div.dtsr-creation div.dtsr-confirmation-buttons {
|
||||
text-align: right;
|
||||
margin-top: 1em;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-modal-foot button,
|
||||
div.dtsr-confirmation div.dtsr-confirmation-buttons button,
|
||||
div.dtsr-creation div.dtsr-modal-foot button,
|
||||
div.dtsr-creation div.dtsr-confirmation-buttons button {
|
||||
margin: 0px;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-text,
|
||||
div.dtsr-creation div.dtsr-creation-text {
|
||||
text-align: left;
|
||||
padding: 0px;
|
||||
border: none;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-text span,
|
||||
div.dtsr-creation div.dtsr-creation-text span {
|
||||
font-size: 20px;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-left, div.dtsr-confirmation div.dtsr-creation-form div.dtsr-right,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-left,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-right {
|
||||
display: inline-block;
|
||||
width: 50%;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-left,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-left {
|
||||
text-align: right;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-right, div.dtsr-confirmation div.dtsr-creation-form div.dtsr-name-row,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-right,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-name-row {
|
||||
text-align: left;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-form-row,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-form-row {
|
||||
margin: 0.5em 0;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-form-row:first-child,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-form-row:first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-form-row:last-child,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-form-row:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-form-row label.dtsr-name-label,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-form-row label.dtsr-name-label {
|
||||
width: 25%;
|
||||
display: inline-block;
|
||||
text-align: right;
|
||||
padding-right: 15px;
|
||||
padding-left: 15px;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-form-row input.dtsr-name-input,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-form-row input.dtsr-name-input {
|
||||
width: 66.6%;
|
||||
display: inline-block;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-form-row input.dtsr-check-box,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-form-row input.dtsr-check-box {
|
||||
margin-left: 25%;
|
||||
margin-right: 14px;
|
||||
display: inline-block;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-confirmation-text,
|
||||
div.dtsr-creation div.dtsr-confirmation-text {
|
||||
text-align: left;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-confirmation-text label.dtsr-name-label,
|
||||
div.dtsr-creation div.dtsr-confirmation-text label.dtsr-name-label {
|
||||
width: auto;
|
||||
display: inline-block;
|
||||
text-align: right;
|
||||
padding-right: 15px;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-confirmation-text input.dtsr-name-input,
|
||||
div.dtsr-creation div.dtsr-confirmation-text input.dtsr-name-input {
|
||||
width: 66.6%;
|
||||
display: inline-block;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-confirmation-text input.dtsr-check-box,
|
||||
div.dtsr-creation div.dtsr-confirmation-text input.dtsr-check-box {
|
||||
margin-left: 33.3%;
|
||||
margin-right: 14px;
|
||||
display: inline-block;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-modal-foot,
|
||||
div.dtsr-creation div.dtsr-modal-foot {
|
||||
text-align: right;
|
||||
padding-top: 10px;
|
||||
}
|
||||
div.dtsr-confirmation span.dtsr-modal-error,
|
||||
div.dtsr-creation span.dtsr-modal-error {
|
||||
color: red;
|
||||
font-size: 0.9em;
|
||||
}
|
||||
|
||||
div.dtsr-creation {
|
||||
top: 10%;
|
||||
}
|
||||
|
||||
div.dtsr-check-row {
|
||||
padding-top: 0px;
|
||||
}
|
||||
|
||||
div.dtsr-popover-close {
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
right: 10px;
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
text-align: center;
|
||||
border-radius: 3px;
|
||||
cursor: pointer;
|
||||
z-index: 12;
|
||||
}
|
||||
|
||||
div.dtsr-background {
|
||||
z-index: 2002;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: rgba(0, 0, 0, 0.7);
|
||||
background: radial-gradient(ellipse farthest-corner at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
|
||||
}
|
||||
|
||||
div.dt-button-collection h3 {
|
||||
text-align: center;
|
||||
margin-top: 4px;
|
||||
margin-bottom: 8px;
|
||||
font-size: 1.5em;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
div.dt-button-collection span.dtsr-emptyStates {
|
||||
border-radius: 5px;
|
||||
display: inline-block;
|
||||
line-height: 1.6em;
|
||||
white-space: nowrap;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
width: 100%;
|
||||
padding-bottom: 7px;
|
||||
padding-top: 3px;
|
||||
}
|
||||
|
||||
html.dark div.dtsr-confirmation,
|
||||
html.dark div.dtsr-creation,
|
||||
html[data-bs-theme=dark] div.dtsr-confirmation,
|
||||
html[data-bs-theme=dark] div.dtsr-creation {
|
||||
background-color: rgb(33, 37, 41);
|
||||
border: 1px solid rgba(255, 255, 255, 0.15);
|
||||
}
|
||||
html.dark div.dtsr-confirmation button,
|
||||
html.dark div.dtsr-creation button,
|
||||
html[data-bs-theme=dark] div.dtsr-confirmation button,
|
||||
html[data-bs-theme=dark] div.dtsr-creation button {
|
||||
color: inherit;
|
||||
border: 1px solid rgba(255, 255, 255, 0.175);
|
||||
background-color: rgb(47, 52, 56);
|
||||
}
|
||||
html.dark div.dtsr-confirmation button:hover,
|
||||
html.dark div.dtsr-creation button:hover,
|
||||
html[data-bs-theme=dark] div.dtsr-confirmation button:hover,
|
||||
html[data-bs-theme=dark] div.dtsr-creation button:hover {
|
||||
background-color: rgb(64, 69, 73);
|
||||
}
|
||||
|
||||
div.dt-button-collection h3 {
|
||||
margin-top: 8px;
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
div.dt-button-collection div.dropdown-menu {
|
||||
padding-top: 0px;
|
||||
padding-bottom: 4px;
|
||||
padding-left: 4px;
|
||||
padding-right: 4px;
|
||||
}
|
||||
div.dt-button-collection div.dropdown-menu div.dt-btn-split-wrapper {
|
||||
margin-top: 4px;
|
||||
}
|
||||
|
||||
div.dt-button-split-left div.dropdown-menu {
|
||||
padding-right: 4px;
|
||||
padding-left: 4px;
|
||||
padding-bottom: 4px;
|
||||
}
|
||||
div.dt-button-split-left div.dropdown-menu button.dt-btn-split-drop-button {
|
||||
color: rgb(255, 255, 255);
|
||||
border-radius: 4px;
|
||||
background-color: rgb(107, 117, 125);
|
||||
margin-top: 4px;
|
||||
}
|
||||
div.dt-button-split-left div.dropdown-menu button.dt-btn-split-drop-button:hover {
|
||||
background-color: rgb(90, 98, 104);
|
||||
}
|
||||
|
||||
input.dtsr-input {
|
||||
display: inline-block;
|
||||
width: auto;
|
||||
margin-left: 3px;
|
||||
}
|
||||
|
||||
div.dtsr-creation-form div.dtsr-form-row label.dtsr-name-label {
|
||||
width: 33.3%;
|
||||
display: inline-block;
|
||||
text-align: left !important;
|
||||
padding-right: 15px;
|
||||
padding-left: 15px;
|
||||
}
|
||||
div.dtsr-creation-form div.dtsr-form-row input.dtsr-name-input {
|
||||
width: 66.6%;
|
||||
display: inline-block;
|
||||
}
|
||||
div.dtsr-creation-form div.dtsr-form-row input.dtsr-check-box {
|
||||
margin-left: 33.3%;
|
||||
margin-right: 14px;
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
div.dtsr-confirmation-text {
|
||||
margin-top: 1.5em;
|
||||
}
|
||||
div.dtsr-confirmation-text label.dtsr-name-label {
|
||||
width: 33.3%;
|
||||
display: inline-block;
|
||||
text-align: left !important;
|
||||
padding-right: 15px;
|
||||
padding-left: 15px;
|
||||
}
|
||||
div.dtsr-confirmation-text input.dtsr-name-input {
|
||||
width: 66.6%;
|
||||
display: inline-block;
|
||||
}
|
||||
div.dtsr-confirmation-text input.dtsr-check-box {
|
||||
margin-left: 33.3%;
|
||||
margin-right: 14px;
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
}
|
1
root/usr/share/javascript/StateRestore/css/stateRestore.bootstrap4.min.css
vendored
Normal file
1
root/usr/share/javascript/StateRestore/css/stateRestore.bootstrap4.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
@@ -0,0 +1,297 @@
|
||||
div.dtsr-confirmation,
|
||||
div.dtsr-creation {
|
||||
position: fixed;
|
||||
top: 20%;
|
||||
left: 50%;
|
||||
width: 500px;
|
||||
margin-left: -250px;
|
||||
background-color: white;
|
||||
border-radius: 0.75em;
|
||||
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
|
||||
z-index: 2003;
|
||||
box-sizing: border-box;
|
||||
padding: 2em;
|
||||
}
|
||||
div.dtsr-confirmation button,
|
||||
div.dtsr-creation button {
|
||||
display: inline-block;
|
||||
margin: 1em;
|
||||
padding: 0.5em 1em;
|
||||
border-radius: 0.5em;
|
||||
border: 1px solid rgba(0, 0, 0, 0.175);
|
||||
background-color: #f6f6f6;
|
||||
text-align: left;
|
||||
cursor: pointer;
|
||||
}
|
||||
div.dtsr-confirmation button:hover,
|
||||
div.dtsr-creation button:hover {
|
||||
background-color: #ebebeb;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-text,
|
||||
div.dtsr-confirmation div.dtsr-confirmation-title-row,
|
||||
div.dtsr-creation div.dtsr-creation-text,
|
||||
div.dtsr-creation div.dtsr-confirmation-title-row {
|
||||
text-align: left;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-text h2,
|
||||
div.dtsr-confirmation div.dtsr-confirmation-title-row h2,
|
||||
div.dtsr-creation div.dtsr-creation-text h2,
|
||||
div.dtsr-creation div.dtsr-confirmation-title-row h2 {
|
||||
border-bottom: 0px;
|
||||
margin-top: 0px;
|
||||
padding-top: 0px;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-confirmation-text,
|
||||
div.dtsr-creation div.dtsr-confirmation-text {
|
||||
text-align: center;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-modal-foot,
|
||||
div.dtsr-confirmation div.dtsr-confirmation-buttons,
|
||||
div.dtsr-creation div.dtsr-modal-foot,
|
||||
div.dtsr-creation div.dtsr-confirmation-buttons {
|
||||
text-align: right;
|
||||
margin-top: 1em;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-modal-foot button,
|
||||
div.dtsr-confirmation div.dtsr-confirmation-buttons button,
|
||||
div.dtsr-creation div.dtsr-modal-foot button,
|
||||
div.dtsr-creation div.dtsr-confirmation-buttons button {
|
||||
margin: 0px;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-text,
|
||||
div.dtsr-creation div.dtsr-creation-text {
|
||||
text-align: left;
|
||||
padding: 0px;
|
||||
border: none;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-text span,
|
||||
div.dtsr-creation div.dtsr-creation-text span {
|
||||
font-size: 20px;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-left, div.dtsr-confirmation div.dtsr-creation-form div.dtsr-right,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-left,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-right {
|
||||
display: inline-block;
|
||||
width: 50%;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-left,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-left {
|
||||
text-align: right;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-right, div.dtsr-confirmation div.dtsr-creation-form div.dtsr-name-row,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-right,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-name-row {
|
||||
text-align: left;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-form-row,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-form-row {
|
||||
margin: 0.5em 0;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-form-row:first-child,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-form-row:first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-form-row:last-child,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-form-row:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-form-row label.dtsr-name-label,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-form-row label.dtsr-name-label {
|
||||
width: 25%;
|
||||
display: inline-block;
|
||||
text-align: right;
|
||||
padding-right: 15px;
|
||||
padding-left: 15px;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-form-row input.dtsr-name-input,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-form-row input.dtsr-name-input {
|
||||
width: 66.6%;
|
||||
display: inline-block;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-form-row input.dtsr-check-box,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-form-row input.dtsr-check-box {
|
||||
margin-left: 25%;
|
||||
margin-right: 14px;
|
||||
display: inline-block;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-confirmation-text,
|
||||
div.dtsr-creation div.dtsr-confirmation-text {
|
||||
text-align: left;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-confirmation-text label.dtsr-name-label,
|
||||
div.dtsr-creation div.dtsr-confirmation-text label.dtsr-name-label {
|
||||
width: auto;
|
||||
display: inline-block;
|
||||
text-align: right;
|
||||
padding-right: 15px;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-confirmation-text input.dtsr-name-input,
|
||||
div.dtsr-creation div.dtsr-confirmation-text input.dtsr-name-input {
|
||||
width: 66.6%;
|
||||
display: inline-block;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-confirmation-text input.dtsr-check-box,
|
||||
div.dtsr-creation div.dtsr-confirmation-text input.dtsr-check-box {
|
||||
margin-left: 33.3%;
|
||||
margin-right: 14px;
|
||||
display: inline-block;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-modal-foot,
|
||||
div.dtsr-creation div.dtsr-modal-foot {
|
||||
text-align: right;
|
||||
padding-top: 10px;
|
||||
}
|
||||
div.dtsr-confirmation span.dtsr-modal-error,
|
||||
div.dtsr-creation span.dtsr-modal-error {
|
||||
color: red;
|
||||
font-size: 0.9em;
|
||||
}
|
||||
|
||||
div.dtsr-creation {
|
||||
top: 10%;
|
||||
}
|
||||
|
||||
div.dtsr-check-row {
|
||||
padding-top: 0px;
|
||||
}
|
||||
|
||||
div.dtsr-popover-close {
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
right: 10px;
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
text-align: center;
|
||||
border-radius: 3px;
|
||||
cursor: pointer;
|
||||
z-index: 12;
|
||||
}
|
||||
|
||||
div.dtsr-background {
|
||||
z-index: 2002;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: rgba(0, 0, 0, 0.7);
|
||||
background: radial-gradient(ellipse farthest-corner at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
|
||||
}
|
||||
|
||||
div.dt-button-collection h3 {
|
||||
text-align: center;
|
||||
margin-top: 4px;
|
||||
margin-bottom: 8px;
|
||||
font-size: 1.5em;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
div.dt-button-collection span.dtsr-emptyStates {
|
||||
border-radius: 5px;
|
||||
display: inline-block;
|
||||
line-height: 1.6em;
|
||||
white-space: nowrap;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
width: 100%;
|
||||
padding-bottom: 7px;
|
||||
padding-top: 3px;
|
||||
}
|
||||
|
||||
html.dark div.dtsr-confirmation,
|
||||
html.dark div.dtsr-creation,
|
||||
html[data-bs-theme=dark] div.dtsr-confirmation,
|
||||
html[data-bs-theme=dark] div.dtsr-creation {
|
||||
background-color: rgb(33, 37, 41);
|
||||
border: 1px solid rgba(255, 255, 255, 0.15);
|
||||
}
|
||||
html.dark div.dtsr-confirmation button,
|
||||
html.dark div.dtsr-creation button,
|
||||
html[data-bs-theme=dark] div.dtsr-confirmation button,
|
||||
html[data-bs-theme=dark] div.dtsr-creation button {
|
||||
color: inherit;
|
||||
border: 1px solid rgba(255, 255, 255, 0.175);
|
||||
background-color: rgb(47, 52, 56);
|
||||
}
|
||||
html.dark div.dtsr-confirmation button:hover,
|
||||
html.dark div.dtsr-creation button:hover,
|
||||
html[data-bs-theme=dark] div.dtsr-confirmation button:hover,
|
||||
html[data-bs-theme=dark] div.dtsr-creation button:hover {
|
||||
background-color: rgb(64, 69, 73);
|
||||
}
|
||||
|
||||
span.dtsr-check-label {
|
||||
padding-left: 3px;
|
||||
}
|
||||
|
||||
div.dt-button-collection h3 {
|
||||
margin-top: 8px;
|
||||
}
|
||||
div.dt-button-collection div.dropdown-menu {
|
||||
padding-top: 0px;
|
||||
padding-bottom: 4px;
|
||||
}
|
||||
div.dt-button-collection div.dropdown-menu div.dt-btn-split-wrapper {
|
||||
margin-top: 4px;
|
||||
padding-left: 3px;
|
||||
padding-right: 3px;
|
||||
}
|
||||
div.dt-button-collection div.dropdown-menu div.dt-btn-split-wrapper button.btn {
|
||||
width: calc(100% - 30px);
|
||||
}
|
||||
div.dt-button-collection div.dropdown-menu div.dt-btn-split-wrapper button.dt-btn-split-drop {
|
||||
width: 30px;
|
||||
}
|
||||
div.dt-button-collection div.dropdown-menu button.dt-btn-split-drop-button {
|
||||
margin-left: -2px;
|
||||
margin-right: -2px;
|
||||
}
|
||||
|
||||
div.dt-button-split-left div.dropdown-menu {
|
||||
padding-left: 4px;
|
||||
padding-right: 4px;
|
||||
}
|
||||
div.dt-button-split-left div.dropdown-menu button.dt-btn-split-drop-button {
|
||||
color: rgb(255, 255, 255);
|
||||
border-radius: 4px;
|
||||
background-color: rgb(107, 117, 125);
|
||||
margin-top: 4px;
|
||||
}
|
||||
div.dt-button-split-left div.dropdown-menu button.dt-btn-split-drop-button:hover {
|
||||
background-color: rgb(90, 98, 104);
|
||||
}
|
||||
|
||||
input.dtsr-input {
|
||||
margin-left: 3px;
|
||||
display: inline-block;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
div.dtsr-creation-form div.dtsr-check-row {
|
||||
height: 25px;
|
||||
}
|
||||
div.dtsr-creation-form div.dtsr-form-row label.dtsr-name-label {
|
||||
width: 33.3%;
|
||||
display: inline-block;
|
||||
text-align: left !important;
|
||||
padding-right: 15px;
|
||||
padding-left: 15px;
|
||||
}
|
||||
div.dtsr-creation-form div.dtsr-form-row input.dtsr-name-input {
|
||||
width: 66.6%;
|
||||
display: inline-block;
|
||||
}
|
||||
div.dtsr-creation-form div.dtsr-form-row input.dtsr-check-box {
|
||||
margin-left: 33.3%;
|
||||
margin-right: 14px;
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
float: none;
|
||||
line-height: normal;
|
||||
}
|
||||
|
||||
div.dtsr-confirmation-text {
|
||||
margin-top: 1.5em;
|
||||
}
|
1
root/usr/share/javascript/StateRestore/css/stateRestore.bootstrap5.min.css
vendored
Normal file
1
root/usr/share/javascript/StateRestore/css/stateRestore.bootstrap5.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
@@ -0,0 +1,292 @@
|
||||
div.dtsr-confirmation,
|
||||
div.dtsr-creation {
|
||||
position: fixed;
|
||||
top: 20%;
|
||||
left: 50%;
|
||||
width: 500px;
|
||||
margin-left: -250px;
|
||||
background-color: white;
|
||||
border-radius: 0.75em;
|
||||
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
|
||||
z-index: 2003;
|
||||
box-sizing: border-box;
|
||||
padding: 2em;
|
||||
}
|
||||
div.dtsr-confirmation button,
|
||||
div.dtsr-creation button {
|
||||
display: inline-block;
|
||||
margin: 1em;
|
||||
padding: 0.5em 1em;
|
||||
border-radius: 0.5em;
|
||||
border: 1px solid rgba(0, 0, 0, 0.175);
|
||||
background-color: #f6f6f6;
|
||||
text-align: left;
|
||||
cursor: pointer;
|
||||
}
|
||||
div.dtsr-confirmation button:hover,
|
||||
div.dtsr-creation button:hover {
|
||||
background-color: #ebebeb;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-text,
|
||||
div.dtsr-confirmation div.dtsr-confirmation-title-row,
|
||||
div.dtsr-creation div.dtsr-creation-text,
|
||||
div.dtsr-creation div.dtsr-confirmation-title-row {
|
||||
text-align: left;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-text h2,
|
||||
div.dtsr-confirmation div.dtsr-confirmation-title-row h2,
|
||||
div.dtsr-creation div.dtsr-creation-text h2,
|
||||
div.dtsr-creation div.dtsr-confirmation-title-row h2 {
|
||||
border-bottom: 0px;
|
||||
margin-top: 0px;
|
||||
padding-top: 0px;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-confirmation-text,
|
||||
div.dtsr-creation div.dtsr-confirmation-text {
|
||||
text-align: center;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-modal-foot,
|
||||
div.dtsr-confirmation div.dtsr-confirmation-buttons,
|
||||
div.dtsr-creation div.dtsr-modal-foot,
|
||||
div.dtsr-creation div.dtsr-confirmation-buttons {
|
||||
text-align: right;
|
||||
margin-top: 1em;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-modal-foot button,
|
||||
div.dtsr-confirmation div.dtsr-confirmation-buttons button,
|
||||
div.dtsr-creation div.dtsr-modal-foot button,
|
||||
div.dtsr-creation div.dtsr-confirmation-buttons button {
|
||||
margin: 0px;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-text,
|
||||
div.dtsr-creation div.dtsr-creation-text {
|
||||
text-align: left;
|
||||
padding: 0px;
|
||||
border: none;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-text span,
|
||||
div.dtsr-creation div.dtsr-creation-text span {
|
||||
font-size: 20px;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-left, div.dtsr-confirmation div.dtsr-creation-form div.dtsr-right,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-left,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-right {
|
||||
display: inline-block;
|
||||
width: 50%;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-left,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-left {
|
||||
text-align: right;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-right, div.dtsr-confirmation div.dtsr-creation-form div.dtsr-name-row,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-right,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-name-row {
|
||||
text-align: left;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-form-row,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-form-row {
|
||||
margin: 0.5em 0;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-form-row:first-child,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-form-row:first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-form-row:last-child,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-form-row:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-form-row label.dtsr-name-label,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-form-row label.dtsr-name-label {
|
||||
width: 25%;
|
||||
display: inline-block;
|
||||
text-align: right;
|
||||
padding-right: 15px;
|
||||
padding-left: 15px;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-form-row input.dtsr-name-input,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-form-row input.dtsr-name-input {
|
||||
width: 66.6%;
|
||||
display: inline-block;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-form-row input.dtsr-check-box,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-form-row input.dtsr-check-box {
|
||||
margin-left: 25%;
|
||||
margin-right: 14px;
|
||||
display: inline-block;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-confirmation-text,
|
||||
div.dtsr-creation div.dtsr-confirmation-text {
|
||||
text-align: left;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-confirmation-text label.dtsr-name-label,
|
||||
div.dtsr-creation div.dtsr-confirmation-text label.dtsr-name-label {
|
||||
width: auto;
|
||||
display: inline-block;
|
||||
text-align: right;
|
||||
padding-right: 15px;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-confirmation-text input.dtsr-name-input,
|
||||
div.dtsr-creation div.dtsr-confirmation-text input.dtsr-name-input {
|
||||
width: 66.6%;
|
||||
display: inline-block;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-confirmation-text input.dtsr-check-box,
|
||||
div.dtsr-creation div.dtsr-confirmation-text input.dtsr-check-box {
|
||||
margin-left: 33.3%;
|
||||
margin-right: 14px;
|
||||
display: inline-block;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-modal-foot,
|
||||
div.dtsr-creation div.dtsr-modal-foot {
|
||||
text-align: right;
|
||||
padding-top: 10px;
|
||||
}
|
||||
div.dtsr-confirmation span.dtsr-modal-error,
|
||||
div.dtsr-creation span.dtsr-modal-error {
|
||||
color: red;
|
||||
font-size: 0.9em;
|
||||
}
|
||||
|
||||
div.dtsr-creation {
|
||||
top: 10%;
|
||||
}
|
||||
|
||||
div.dtsr-check-row {
|
||||
padding-top: 0px;
|
||||
}
|
||||
|
||||
div.dtsr-popover-close {
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
right: 10px;
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
text-align: center;
|
||||
border-radius: 3px;
|
||||
cursor: pointer;
|
||||
z-index: 12;
|
||||
}
|
||||
|
||||
div.dtsr-background {
|
||||
z-index: 2002;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: rgba(0, 0, 0, 0.7);
|
||||
background: radial-gradient(ellipse farthest-corner at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
|
||||
}
|
||||
|
||||
div.dt-button-collection h3 {
|
||||
text-align: center;
|
||||
margin-top: 4px;
|
||||
margin-bottom: 8px;
|
||||
font-size: 1.5em;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
div.dt-button-collection span.dtsr-emptyStates {
|
||||
border-radius: 5px;
|
||||
display: inline-block;
|
||||
line-height: 1.6em;
|
||||
white-space: nowrap;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
width: 100%;
|
||||
padding-bottom: 7px;
|
||||
padding-top: 3px;
|
||||
}
|
||||
|
||||
html.dark div.dtsr-confirmation,
|
||||
html.dark div.dtsr-creation,
|
||||
html[data-bs-theme=dark] div.dtsr-confirmation,
|
||||
html[data-bs-theme=dark] div.dtsr-creation {
|
||||
background-color: rgb(33, 37, 41);
|
||||
border: 1px solid rgba(255, 255, 255, 0.15);
|
||||
}
|
||||
html.dark div.dtsr-confirmation button,
|
||||
html.dark div.dtsr-creation button,
|
||||
html[data-bs-theme=dark] div.dtsr-confirmation button,
|
||||
html[data-bs-theme=dark] div.dtsr-creation button {
|
||||
color: inherit;
|
||||
border: 1px solid rgba(255, 255, 255, 0.175);
|
||||
background-color: rgb(47, 52, 56);
|
||||
}
|
||||
html.dark div.dtsr-confirmation button:hover,
|
||||
html.dark div.dtsr-creation button:hover,
|
||||
html[data-bs-theme=dark] div.dtsr-confirmation button:hover,
|
||||
html[data-bs-theme=dark] div.dtsr-creation button:hover {
|
||||
background-color: rgb(64, 69, 73);
|
||||
}
|
||||
|
||||
div.dtsr-form-row {
|
||||
display: block;
|
||||
}
|
||||
|
||||
div.dtsr-creation-form {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
div.checkbox {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
span.dtsr-check-label {
|
||||
padding-left: 3px;
|
||||
}
|
||||
|
||||
input.dtsr-input {
|
||||
display: inline-block;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
span.dtsr-confirmation-message {
|
||||
font-size: 1rem;
|
||||
padding-top: 7px;
|
||||
padding-bottom: 7px;
|
||||
line-height: 2.5em;
|
||||
}
|
||||
|
||||
div.dt-button-collection {
|
||||
width: auto;
|
||||
padding-left: 0.5rem;
|
||||
padding-right: 0.5rem;
|
||||
}
|
||||
div.dt-button-collection div.dropdown-content {
|
||||
width: 100%;
|
||||
padding-top: 0.5rem;
|
||||
padding-bottom: 0px;
|
||||
}
|
||||
div.dt-button-collection div.dropdown-content div.dropdown-trigger {
|
||||
margin-bottom: 0px !important;
|
||||
padding-right: 0.5rem;
|
||||
padding-left: 0.5rem;
|
||||
}
|
||||
div.dt-button-collection div.dropdown-content div.dropdown-trigger button.dt-button {
|
||||
border-top-right-radius: 4px;
|
||||
border-bottom-right-radius: 4px;
|
||||
}
|
||||
|
||||
div.dt-button-split-left div.dropdown-content {
|
||||
padding-left: 0.5rem;
|
||||
padding-right: 0.5rem;
|
||||
padding-top: 1rem;
|
||||
padding-bottom: 0.5rem;
|
||||
width: 100%;
|
||||
}
|
||||
div.dt-button-split-left div.dropdown-content button.dt-btn-split-drop-button {
|
||||
width: 100%;
|
||||
margin-top: 0.5rem;
|
||||
}
|
||||
|
||||
div.dtsr-form-row label.dtsr-name-label, div.dtsr-confirmation-text label.dtsr-name-label {
|
||||
line-height: 1.5;
|
||||
padding-top: 10px;
|
||||
}
|
||||
|
||||
div.dtsr-confirmation-text, div.dtsr-creation-form {
|
||||
margin-top: 1.5em;
|
||||
}
|
1
root/usr/share/javascript/StateRestore/css/stateRestore.bulma.min.css
vendored
Normal file
1
root/usr/share/javascript/StateRestore/css/stateRestore.bulma.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
@@ -0,0 +1,240 @@
|
||||
div.dtsr-confirmation,
|
||||
div.dtsr-creation {
|
||||
position: fixed;
|
||||
top: 20%;
|
||||
left: 50%;
|
||||
width: 500px;
|
||||
margin-left: -250px;
|
||||
background-color: white;
|
||||
border-radius: 0.75em;
|
||||
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
|
||||
z-index: 2003;
|
||||
box-sizing: border-box;
|
||||
padding: 2em;
|
||||
}
|
||||
div.dtsr-confirmation button,
|
||||
div.dtsr-creation button {
|
||||
display: inline-block;
|
||||
margin: 1em;
|
||||
padding: 0.5em 1em;
|
||||
border-radius: 0.5em;
|
||||
border: 1px solid rgba(0, 0, 0, 0.175);
|
||||
background-color: #f6f6f6;
|
||||
text-align: left;
|
||||
cursor: pointer;
|
||||
}
|
||||
div.dtsr-confirmation button:hover,
|
||||
div.dtsr-creation button:hover {
|
||||
background-color: #ebebeb;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-text,
|
||||
div.dtsr-confirmation div.dtsr-confirmation-title-row,
|
||||
div.dtsr-creation div.dtsr-creation-text,
|
||||
div.dtsr-creation div.dtsr-confirmation-title-row {
|
||||
text-align: left;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-text h2,
|
||||
div.dtsr-confirmation div.dtsr-confirmation-title-row h2,
|
||||
div.dtsr-creation div.dtsr-creation-text h2,
|
||||
div.dtsr-creation div.dtsr-confirmation-title-row h2 {
|
||||
border-bottom: 0px;
|
||||
margin-top: 0px;
|
||||
padding-top: 0px;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-confirmation-text,
|
||||
div.dtsr-creation div.dtsr-confirmation-text {
|
||||
text-align: center;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-modal-foot,
|
||||
div.dtsr-confirmation div.dtsr-confirmation-buttons,
|
||||
div.dtsr-creation div.dtsr-modal-foot,
|
||||
div.dtsr-creation div.dtsr-confirmation-buttons {
|
||||
text-align: right;
|
||||
margin-top: 1em;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-modal-foot button,
|
||||
div.dtsr-confirmation div.dtsr-confirmation-buttons button,
|
||||
div.dtsr-creation div.dtsr-modal-foot button,
|
||||
div.dtsr-creation div.dtsr-confirmation-buttons button {
|
||||
margin: 0px;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-text,
|
||||
div.dtsr-creation div.dtsr-creation-text {
|
||||
text-align: left;
|
||||
padding: 0px;
|
||||
border: none;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-text span,
|
||||
div.dtsr-creation div.dtsr-creation-text span {
|
||||
font-size: 20px;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-left, div.dtsr-confirmation div.dtsr-creation-form div.dtsr-right,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-left,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-right {
|
||||
display: inline-block;
|
||||
width: 50%;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-left,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-left {
|
||||
text-align: right;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-right, div.dtsr-confirmation div.dtsr-creation-form div.dtsr-name-row,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-right,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-name-row {
|
||||
text-align: left;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-form-row,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-form-row {
|
||||
margin: 0.5em 0;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-form-row:first-child,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-form-row:first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-form-row:last-child,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-form-row:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-form-row label.dtsr-name-label,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-form-row label.dtsr-name-label {
|
||||
width: 25%;
|
||||
display: inline-block;
|
||||
text-align: right;
|
||||
padding-right: 15px;
|
||||
padding-left: 15px;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-form-row input.dtsr-name-input,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-form-row input.dtsr-name-input {
|
||||
width: 66.6%;
|
||||
display: inline-block;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-form-row input.dtsr-check-box,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-form-row input.dtsr-check-box {
|
||||
margin-left: 25%;
|
||||
margin-right: 14px;
|
||||
display: inline-block;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-confirmation-text,
|
||||
div.dtsr-creation div.dtsr-confirmation-text {
|
||||
text-align: left;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-confirmation-text label.dtsr-name-label,
|
||||
div.dtsr-creation div.dtsr-confirmation-text label.dtsr-name-label {
|
||||
width: auto;
|
||||
display: inline-block;
|
||||
text-align: right;
|
||||
padding-right: 15px;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-confirmation-text input.dtsr-name-input,
|
||||
div.dtsr-creation div.dtsr-confirmation-text input.dtsr-name-input {
|
||||
width: 66.6%;
|
||||
display: inline-block;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-confirmation-text input.dtsr-check-box,
|
||||
div.dtsr-creation div.dtsr-confirmation-text input.dtsr-check-box {
|
||||
margin-left: 33.3%;
|
||||
margin-right: 14px;
|
||||
display: inline-block;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-modal-foot,
|
||||
div.dtsr-creation div.dtsr-modal-foot {
|
||||
text-align: right;
|
||||
padding-top: 10px;
|
||||
}
|
||||
div.dtsr-confirmation span.dtsr-modal-error,
|
||||
div.dtsr-creation span.dtsr-modal-error {
|
||||
color: red;
|
||||
font-size: 0.9em;
|
||||
}
|
||||
|
||||
div.dtsr-creation {
|
||||
top: 10%;
|
||||
}
|
||||
|
||||
div.dtsr-check-row {
|
||||
padding-top: 0px;
|
||||
}
|
||||
|
||||
div.dtsr-popover-close {
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
right: 10px;
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
text-align: center;
|
||||
border-radius: 3px;
|
||||
cursor: pointer;
|
||||
z-index: 12;
|
||||
}
|
||||
|
||||
div.dtsr-background {
|
||||
z-index: 2002;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: rgba(0, 0, 0, 0.7);
|
||||
background: radial-gradient(ellipse farthest-corner at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
|
||||
}
|
||||
|
||||
div.dt-button-collection h3 {
|
||||
text-align: center;
|
||||
margin-top: 4px;
|
||||
margin-bottom: 8px;
|
||||
font-size: 1.5em;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
div.dt-button-collection span.dtsr-emptyStates {
|
||||
border-radius: 5px;
|
||||
display: inline-block;
|
||||
line-height: 1.6em;
|
||||
white-space: nowrap;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
width: 100%;
|
||||
padding-bottom: 7px;
|
||||
padding-top: 3px;
|
||||
}
|
||||
|
||||
html.dark div.dtsr-confirmation,
|
||||
html.dark div.dtsr-creation,
|
||||
html[data-bs-theme=dark] div.dtsr-confirmation,
|
||||
html[data-bs-theme=dark] div.dtsr-creation {
|
||||
background-color: rgb(33, 37, 41);
|
||||
border: 1px solid rgba(255, 255, 255, 0.15);
|
||||
}
|
||||
html.dark div.dtsr-confirmation button,
|
||||
html.dark div.dtsr-creation button,
|
||||
html[data-bs-theme=dark] div.dtsr-confirmation button,
|
||||
html[data-bs-theme=dark] div.dtsr-creation button {
|
||||
color: inherit;
|
||||
border: 1px solid rgba(255, 255, 255, 0.175);
|
||||
background-color: rgb(47, 52, 56);
|
||||
}
|
||||
html.dark div.dtsr-confirmation button:hover,
|
||||
html.dark div.dtsr-creation button:hover,
|
||||
html[data-bs-theme=dark] div.dtsr-confirmation button:hover,
|
||||
html[data-bs-theme=dark] div.dtsr-creation button:hover {
|
||||
background-color: rgb(64, 69, 73);
|
||||
}
|
||||
|
||||
div.dt-button-collection h3 {
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
div.dtsr-creation-form div.dtsr-form-row input.dtsr-name-input {
|
||||
width: 57% !important;
|
||||
padding: 5px 4px;
|
||||
border: 1px solid #aaa;
|
||||
border-radius: 3px;
|
||||
}
|
||||
div.dtsr-creation-form div.dtsr-form-row input.dtsr-check-box {
|
||||
margin-left: calc(25% + 30px) !important;
|
||||
}
|
||||
div.dtsr-creation-form div.dtsr-form-row label.dtsr-toggle-title {
|
||||
margin-right: calc(-25% - 30px) !important;
|
||||
}
|
1
root/usr/share/javascript/StateRestore/css/stateRestore.dataTables.min.css
vendored
Normal file
1
root/usr/share/javascript/StateRestore/css/stateRestore.dataTables.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
@@ -0,0 +1,280 @@
|
||||
div.dtsr-confirmation,
|
||||
div.dtsr-creation {
|
||||
position: fixed;
|
||||
top: 20%;
|
||||
left: 50%;
|
||||
width: 500px;
|
||||
margin-left: -250px;
|
||||
background-color: white;
|
||||
border-radius: 0.75em;
|
||||
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
|
||||
z-index: 2003;
|
||||
box-sizing: border-box;
|
||||
padding: 2em;
|
||||
}
|
||||
div.dtsr-confirmation button,
|
||||
div.dtsr-creation button {
|
||||
display: inline-block;
|
||||
margin: 1em;
|
||||
padding: 0.5em 1em;
|
||||
border-radius: 0.5em;
|
||||
border: 1px solid rgba(0, 0, 0, 0.175);
|
||||
background-color: #f6f6f6;
|
||||
text-align: left;
|
||||
cursor: pointer;
|
||||
}
|
||||
div.dtsr-confirmation button:hover,
|
||||
div.dtsr-creation button:hover {
|
||||
background-color: #ebebeb;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-text,
|
||||
div.dtsr-confirmation div.dtsr-confirmation-title-row,
|
||||
div.dtsr-creation div.dtsr-creation-text,
|
||||
div.dtsr-creation div.dtsr-confirmation-title-row {
|
||||
text-align: left;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-text h2,
|
||||
div.dtsr-confirmation div.dtsr-confirmation-title-row h2,
|
||||
div.dtsr-creation div.dtsr-creation-text h2,
|
||||
div.dtsr-creation div.dtsr-confirmation-title-row h2 {
|
||||
border-bottom: 0px;
|
||||
margin-top: 0px;
|
||||
padding-top: 0px;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-confirmation-text,
|
||||
div.dtsr-creation div.dtsr-confirmation-text {
|
||||
text-align: center;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-modal-foot,
|
||||
div.dtsr-confirmation div.dtsr-confirmation-buttons,
|
||||
div.dtsr-creation div.dtsr-modal-foot,
|
||||
div.dtsr-creation div.dtsr-confirmation-buttons {
|
||||
text-align: right;
|
||||
margin-top: 1em;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-modal-foot button,
|
||||
div.dtsr-confirmation div.dtsr-confirmation-buttons button,
|
||||
div.dtsr-creation div.dtsr-modal-foot button,
|
||||
div.dtsr-creation div.dtsr-confirmation-buttons button {
|
||||
margin: 0px;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-text,
|
||||
div.dtsr-creation div.dtsr-creation-text {
|
||||
text-align: left;
|
||||
padding: 0px;
|
||||
border: none;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-text span,
|
||||
div.dtsr-creation div.dtsr-creation-text span {
|
||||
font-size: 20px;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-left, div.dtsr-confirmation div.dtsr-creation-form div.dtsr-right,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-left,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-right {
|
||||
display: inline-block;
|
||||
width: 50%;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-left,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-left {
|
||||
text-align: right;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-right, div.dtsr-confirmation div.dtsr-creation-form div.dtsr-name-row,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-right,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-name-row {
|
||||
text-align: left;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-form-row,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-form-row {
|
||||
margin: 0.5em 0;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-form-row:first-child,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-form-row:first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-form-row:last-child,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-form-row:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-form-row label.dtsr-name-label,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-form-row label.dtsr-name-label {
|
||||
width: 25%;
|
||||
display: inline-block;
|
||||
text-align: right;
|
||||
padding-right: 15px;
|
||||
padding-left: 15px;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-form-row input.dtsr-name-input,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-form-row input.dtsr-name-input {
|
||||
width: 66.6%;
|
||||
display: inline-block;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-form-row input.dtsr-check-box,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-form-row input.dtsr-check-box {
|
||||
margin-left: 25%;
|
||||
margin-right: 14px;
|
||||
display: inline-block;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-confirmation-text,
|
||||
div.dtsr-creation div.dtsr-confirmation-text {
|
||||
text-align: left;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-confirmation-text label.dtsr-name-label,
|
||||
div.dtsr-creation div.dtsr-confirmation-text label.dtsr-name-label {
|
||||
width: auto;
|
||||
display: inline-block;
|
||||
text-align: right;
|
||||
padding-right: 15px;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-confirmation-text input.dtsr-name-input,
|
||||
div.dtsr-creation div.dtsr-confirmation-text input.dtsr-name-input {
|
||||
width: 66.6%;
|
||||
display: inline-block;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-confirmation-text input.dtsr-check-box,
|
||||
div.dtsr-creation div.dtsr-confirmation-text input.dtsr-check-box {
|
||||
margin-left: 33.3%;
|
||||
margin-right: 14px;
|
||||
display: inline-block;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-modal-foot,
|
||||
div.dtsr-creation div.dtsr-modal-foot {
|
||||
text-align: right;
|
||||
padding-top: 10px;
|
||||
}
|
||||
div.dtsr-confirmation span.dtsr-modal-error,
|
||||
div.dtsr-creation span.dtsr-modal-error {
|
||||
color: red;
|
||||
font-size: 0.9em;
|
||||
}
|
||||
|
||||
div.dtsr-creation {
|
||||
top: 10%;
|
||||
}
|
||||
|
||||
div.dtsr-check-row {
|
||||
padding-top: 0px;
|
||||
}
|
||||
|
||||
div.dtsr-popover-close {
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
right: 10px;
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
text-align: center;
|
||||
border-radius: 3px;
|
||||
cursor: pointer;
|
||||
z-index: 12;
|
||||
}
|
||||
|
||||
div.dtsr-background {
|
||||
z-index: 2002;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: rgba(0, 0, 0, 0.7);
|
||||
background: radial-gradient(ellipse farthest-corner at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
|
||||
}
|
||||
|
||||
div.dt-button-collection h3 {
|
||||
text-align: center;
|
||||
margin-top: 4px;
|
||||
margin-bottom: 8px;
|
||||
font-size: 1.5em;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
div.dt-button-collection span.dtsr-emptyStates {
|
||||
border-radius: 5px;
|
||||
display: inline-block;
|
||||
line-height: 1.6em;
|
||||
white-space: nowrap;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
width: 100%;
|
||||
padding-bottom: 7px;
|
||||
padding-top: 3px;
|
||||
}
|
||||
|
||||
html.dark div.dtsr-confirmation,
|
||||
html.dark div.dtsr-creation,
|
||||
html[data-bs-theme=dark] div.dtsr-confirmation,
|
||||
html[data-bs-theme=dark] div.dtsr-creation {
|
||||
background-color: rgb(33, 37, 41);
|
||||
border: 1px solid rgba(255, 255, 255, 0.15);
|
||||
}
|
||||
html.dark div.dtsr-confirmation button,
|
||||
html.dark div.dtsr-creation button,
|
||||
html[data-bs-theme=dark] div.dtsr-confirmation button,
|
||||
html[data-bs-theme=dark] div.dtsr-creation button {
|
||||
color: inherit;
|
||||
border: 1px solid rgba(255, 255, 255, 0.175);
|
||||
background-color: rgb(47, 52, 56);
|
||||
}
|
||||
html.dark div.dtsr-confirmation button:hover,
|
||||
html.dark div.dtsr-creation button:hover,
|
||||
html[data-bs-theme=dark] div.dtsr-confirmation button:hover,
|
||||
html[data-bs-theme=dark] div.dtsr-creation button:hover {
|
||||
background-color: rgb(64, 69, 73);
|
||||
}
|
||||
|
||||
span.dtsr-check-label {
|
||||
padding-left: 3px;
|
||||
}
|
||||
|
||||
input.dtsr-check-box {
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
button.dtsr-creation-button {
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
div.dt-button-collection {
|
||||
width: 150px;
|
||||
}
|
||||
div.dt-button-collection h3 {
|
||||
font-size: 1.35rem;
|
||||
}
|
||||
div.dt-button-collection div.dropdown-pane {
|
||||
width: 150px;
|
||||
padding: 4px !important;
|
||||
padding-bottom: 0px !important;
|
||||
}
|
||||
div.dt-button-collection div.dropdown-pane div.dt-btn-split-wrapper {
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
div.dt-button-collection div.dropdown-pane div.dt-btn-split-wrapper a.button {
|
||||
width: calc(100% - 43px);
|
||||
flex: none !important;
|
||||
height: 41px;
|
||||
}
|
||||
div.dt-button-collection div.dropdown-pane div.dt-btn-split-wrapper button.dt-btn-split-drop {
|
||||
width: 43px;
|
||||
flex: none !important;
|
||||
margin-left: -1px;
|
||||
height: 41px;
|
||||
}
|
||||
div.dt-button-collection div.dropdown-pane button.dt-btn-split-drop-button {
|
||||
width: 100%;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
div.dt-button-split-left div.dropdown-pane {
|
||||
padding-bottom: 4px !important;
|
||||
}
|
||||
|
||||
input.dtsr-input {
|
||||
display: inline-block;
|
||||
width: auto;
|
||||
font-size: 1rem;
|
||||
margin-left: 3px;
|
||||
}
|
||||
|
||||
div.dtsr-confirmation-text, div.dtsr-creation-form {
|
||||
margin-top: 1.5em;
|
||||
}
|
1
root/usr/share/javascript/StateRestore/css/stateRestore.foundation.min.css
vendored
Normal file
1
root/usr/share/javascript/StateRestore/css/stateRestore.foundation.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
@@ -0,0 +1,282 @@
|
||||
div.dtsr-confirmation,
|
||||
div.dtsr-creation {
|
||||
position: fixed;
|
||||
top: 20%;
|
||||
left: 50%;
|
||||
width: 500px;
|
||||
margin-left: -250px;
|
||||
background-color: white;
|
||||
border-radius: 0.75em;
|
||||
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
|
||||
z-index: 2003;
|
||||
box-sizing: border-box;
|
||||
padding: 2em;
|
||||
}
|
||||
div.dtsr-confirmation button,
|
||||
div.dtsr-creation button {
|
||||
display: inline-block;
|
||||
margin: 1em;
|
||||
padding: 0.5em 1em;
|
||||
border-radius: 0.5em;
|
||||
border: 1px solid rgba(0, 0, 0, 0.175);
|
||||
background-color: #f6f6f6;
|
||||
text-align: left;
|
||||
cursor: pointer;
|
||||
}
|
||||
div.dtsr-confirmation button:hover,
|
||||
div.dtsr-creation button:hover {
|
||||
background-color: #ebebeb;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-text,
|
||||
div.dtsr-confirmation div.dtsr-confirmation-title-row,
|
||||
div.dtsr-creation div.dtsr-creation-text,
|
||||
div.dtsr-creation div.dtsr-confirmation-title-row {
|
||||
text-align: left;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-text h2,
|
||||
div.dtsr-confirmation div.dtsr-confirmation-title-row h2,
|
||||
div.dtsr-creation div.dtsr-creation-text h2,
|
||||
div.dtsr-creation div.dtsr-confirmation-title-row h2 {
|
||||
border-bottom: 0px;
|
||||
margin-top: 0px;
|
||||
padding-top: 0px;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-confirmation-text,
|
||||
div.dtsr-creation div.dtsr-confirmation-text {
|
||||
text-align: center;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-modal-foot,
|
||||
div.dtsr-confirmation div.dtsr-confirmation-buttons,
|
||||
div.dtsr-creation div.dtsr-modal-foot,
|
||||
div.dtsr-creation div.dtsr-confirmation-buttons {
|
||||
text-align: right;
|
||||
margin-top: 1em;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-modal-foot button,
|
||||
div.dtsr-confirmation div.dtsr-confirmation-buttons button,
|
||||
div.dtsr-creation div.dtsr-modal-foot button,
|
||||
div.dtsr-creation div.dtsr-confirmation-buttons button {
|
||||
margin: 0px;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-text,
|
||||
div.dtsr-creation div.dtsr-creation-text {
|
||||
text-align: left;
|
||||
padding: 0px;
|
||||
border: none;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-text span,
|
||||
div.dtsr-creation div.dtsr-creation-text span {
|
||||
font-size: 20px;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-left, div.dtsr-confirmation div.dtsr-creation-form div.dtsr-right,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-left,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-right {
|
||||
display: inline-block;
|
||||
width: 50%;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-left,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-left {
|
||||
text-align: right;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-right, div.dtsr-confirmation div.dtsr-creation-form div.dtsr-name-row,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-right,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-name-row {
|
||||
text-align: left;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-form-row,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-form-row {
|
||||
margin: 0.5em 0;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-form-row:first-child,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-form-row:first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-form-row:last-child,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-form-row:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-form-row label.dtsr-name-label,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-form-row label.dtsr-name-label {
|
||||
width: 25%;
|
||||
display: inline-block;
|
||||
text-align: right;
|
||||
padding-right: 15px;
|
||||
padding-left: 15px;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-form-row input.dtsr-name-input,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-form-row input.dtsr-name-input {
|
||||
width: 66.6%;
|
||||
display: inline-block;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-form-row input.dtsr-check-box,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-form-row input.dtsr-check-box {
|
||||
margin-left: 25%;
|
||||
margin-right: 14px;
|
||||
display: inline-block;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-confirmation-text,
|
||||
div.dtsr-creation div.dtsr-confirmation-text {
|
||||
text-align: left;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-confirmation-text label.dtsr-name-label,
|
||||
div.dtsr-creation div.dtsr-confirmation-text label.dtsr-name-label {
|
||||
width: auto;
|
||||
display: inline-block;
|
||||
text-align: right;
|
||||
padding-right: 15px;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-confirmation-text input.dtsr-name-input,
|
||||
div.dtsr-creation div.dtsr-confirmation-text input.dtsr-name-input {
|
||||
width: 66.6%;
|
||||
display: inline-block;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-confirmation-text input.dtsr-check-box,
|
||||
div.dtsr-creation div.dtsr-confirmation-text input.dtsr-check-box {
|
||||
margin-left: 33.3%;
|
||||
margin-right: 14px;
|
||||
display: inline-block;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-modal-foot,
|
||||
div.dtsr-creation div.dtsr-modal-foot {
|
||||
text-align: right;
|
||||
padding-top: 10px;
|
||||
}
|
||||
div.dtsr-confirmation span.dtsr-modal-error,
|
||||
div.dtsr-creation span.dtsr-modal-error {
|
||||
color: red;
|
||||
font-size: 0.9em;
|
||||
}
|
||||
|
||||
div.dtsr-creation {
|
||||
top: 10%;
|
||||
}
|
||||
|
||||
div.dtsr-check-row {
|
||||
padding-top: 0px;
|
||||
}
|
||||
|
||||
div.dtsr-popover-close {
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
right: 10px;
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
text-align: center;
|
||||
border-radius: 3px;
|
||||
cursor: pointer;
|
||||
z-index: 12;
|
||||
}
|
||||
|
||||
div.dtsr-background {
|
||||
z-index: 2002;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: rgba(0, 0, 0, 0.7);
|
||||
background: radial-gradient(ellipse farthest-corner at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
|
||||
}
|
||||
|
||||
div.dt-button-collection h3 {
|
||||
text-align: center;
|
||||
margin-top: 4px;
|
||||
margin-bottom: 8px;
|
||||
font-size: 1.5em;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
div.dt-button-collection span.dtsr-emptyStates {
|
||||
border-radius: 5px;
|
||||
display: inline-block;
|
||||
line-height: 1.6em;
|
||||
white-space: nowrap;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
width: 100%;
|
||||
padding-bottom: 7px;
|
||||
padding-top: 3px;
|
||||
}
|
||||
|
||||
html.dark div.dtsr-confirmation,
|
||||
html.dark div.dtsr-creation,
|
||||
html[data-bs-theme=dark] div.dtsr-confirmation,
|
||||
html[data-bs-theme=dark] div.dtsr-creation {
|
||||
background-color: rgb(33, 37, 41);
|
||||
border: 1px solid rgba(255, 255, 255, 0.15);
|
||||
}
|
||||
html.dark div.dtsr-confirmation button,
|
||||
html.dark div.dtsr-creation button,
|
||||
html[data-bs-theme=dark] div.dtsr-confirmation button,
|
||||
html[data-bs-theme=dark] div.dtsr-creation button {
|
||||
color: inherit;
|
||||
border: 1px solid rgba(255, 255, 255, 0.175);
|
||||
background-color: rgb(47, 52, 56);
|
||||
}
|
||||
html.dark div.dtsr-confirmation button:hover,
|
||||
html.dark div.dtsr-creation button:hover,
|
||||
html[data-bs-theme=dark] div.dtsr-confirmation button:hover,
|
||||
html[data-bs-theme=dark] div.dtsr-creation button:hover {
|
||||
background-color: rgb(64, 69, 73);
|
||||
}
|
||||
|
||||
div.dt-button-collection {
|
||||
z-index: 2002;
|
||||
}
|
||||
div.dt-button-collection div, div.dt-button-collection ul {
|
||||
background: none;
|
||||
}
|
||||
|
||||
span.dtsr-emptyStates {
|
||||
background: white;
|
||||
padding-top: 2px !important;
|
||||
}
|
||||
|
||||
div.dt-btn-split-wrapper {
|
||||
display: inline-block !important;
|
||||
width: 100%;
|
||||
}
|
||||
div.dt-btn-split-wrapper button.ui-button {
|
||||
display: inline-block !important;
|
||||
width: calc(100% - 24px);
|
||||
}
|
||||
div.dt-btn-split-wrapper button.dt-btn-split-drop {
|
||||
display: inline-block !important;
|
||||
width: 24px;
|
||||
}
|
||||
|
||||
div.dt-button-split-left {
|
||||
padding-bottom: 0px;
|
||||
}
|
||||
div.dt-button-split-left button.dt-btn-split-drop-button {
|
||||
width: 100%;
|
||||
display: block;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
span.dtsr-confirmation-message {
|
||||
padding-right: 3px;
|
||||
}
|
||||
|
||||
div.dtsr-creation-form div.dtsr-form-row label.dtsr-name-label {
|
||||
width: 33.3%;
|
||||
display: inline-block;
|
||||
text-align: left !important;
|
||||
padding-right: 0px;
|
||||
padding-left: 0px;
|
||||
}
|
||||
div.dtsr-creation-form div.dtsr-form-row input.dtsr-name-input {
|
||||
width: 57.6% !important;
|
||||
display: inline-block;
|
||||
}
|
||||
div.dtsr-creation-form div.dtsr-form-row input.dtsr-check-box {
|
||||
margin-left: calc(33.3% + 30px) !important;
|
||||
margin-right: 14px;
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
}
|
||||
div.dtsr-creation-form div.dtsr-form-row label.dtsr-toggle-title {
|
||||
margin-right: calc(-33.3% - 30px) !important;
|
||||
}
|
1
root/usr/share/javascript/StateRestore/css/stateRestore.jqueryui.min.css
vendored
Normal file
1
root/usr/share/javascript/StateRestore/css/stateRestore.jqueryui.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
@@ -0,0 +1,330 @@
|
||||
div.dtsr-confirmation,
|
||||
div.dtsr-creation {
|
||||
position: fixed;
|
||||
top: 20%;
|
||||
left: 50%;
|
||||
width: 500px;
|
||||
margin-left: -250px;
|
||||
background-color: white;
|
||||
border-radius: 0.75em;
|
||||
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
|
||||
z-index: 2003;
|
||||
box-sizing: border-box;
|
||||
padding: 2em;
|
||||
}
|
||||
div.dtsr-confirmation button,
|
||||
div.dtsr-creation button {
|
||||
display: inline-block;
|
||||
margin: 1em;
|
||||
padding: 0.5em 1em;
|
||||
border-radius: 0.5em;
|
||||
border: 1px solid rgba(0, 0, 0, 0.175);
|
||||
background-color: #f6f6f6;
|
||||
text-align: left;
|
||||
cursor: pointer;
|
||||
}
|
||||
div.dtsr-confirmation button:hover,
|
||||
div.dtsr-creation button:hover {
|
||||
background-color: #ebebeb;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-text,
|
||||
div.dtsr-confirmation div.dtsr-confirmation-title-row,
|
||||
div.dtsr-creation div.dtsr-creation-text,
|
||||
div.dtsr-creation div.dtsr-confirmation-title-row {
|
||||
text-align: left;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-text h2,
|
||||
div.dtsr-confirmation div.dtsr-confirmation-title-row h2,
|
||||
div.dtsr-creation div.dtsr-creation-text h2,
|
||||
div.dtsr-creation div.dtsr-confirmation-title-row h2 {
|
||||
border-bottom: 0px;
|
||||
margin-top: 0px;
|
||||
padding-top: 0px;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-confirmation-text,
|
||||
div.dtsr-creation div.dtsr-confirmation-text {
|
||||
text-align: center;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-modal-foot,
|
||||
div.dtsr-confirmation div.dtsr-confirmation-buttons,
|
||||
div.dtsr-creation div.dtsr-modal-foot,
|
||||
div.dtsr-creation div.dtsr-confirmation-buttons {
|
||||
text-align: right;
|
||||
margin-top: 1em;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-modal-foot button,
|
||||
div.dtsr-confirmation div.dtsr-confirmation-buttons button,
|
||||
div.dtsr-creation div.dtsr-modal-foot button,
|
||||
div.dtsr-creation div.dtsr-confirmation-buttons button {
|
||||
margin: 0px;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-text,
|
||||
div.dtsr-creation div.dtsr-creation-text {
|
||||
text-align: left;
|
||||
padding: 0px;
|
||||
border: none;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-text span,
|
||||
div.dtsr-creation div.dtsr-creation-text span {
|
||||
font-size: 20px;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-left, div.dtsr-confirmation div.dtsr-creation-form div.dtsr-right,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-left,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-right {
|
||||
display: inline-block;
|
||||
width: 50%;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-left,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-left {
|
||||
text-align: right;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-right, div.dtsr-confirmation div.dtsr-creation-form div.dtsr-name-row,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-right,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-name-row {
|
||||
text-align: left;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-form-row,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-form-row {
|
||||
margin: 0.5em 0;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-form-row:first-child,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-form-row:first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-form-row:last-child,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-form-row:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-form-row label.dtsr-name-label,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-form-row label.dtsr-name-label {
|
||||
width: 25%;
|
||||
display: inline-block;
|
||||
text-align: right;
|
||||
padding-right: 15px;
|
||||
padding-left: 15px;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-form-row input.dtsr-name-input,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-form-row input.dtsr-name-input {
|
||||
width: 66.6%;
|
||||
display: inline-block;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-creation-form div.dtsr-form-row input.dtsr-check-box,
|
||||
div.dtsr-creation div.dtsr-creation-form div.dtsr-form-row input.dtsr-check-box {
|
||||
margin-left: 25%;
|
||||
margin-right: 14px;
|
||||
display: inline-block;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-confirmation-text,
|
||||
div.dtsr-creation div.dtsr-confirmation-text {
|
||||
text-align: left;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-confirmation-text label.dtsr-name-label,
|
||||
div.dtsr-creation div.dtsr-confirmation-text label.dtsr-name-label {
|
||||
width: auto;
|
||||
display: inline-block;
|
||||
text-align: right;
|
||||
padding-right: 15px;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-confirmation-text input.dtsr-name-input,
|
||||
div.dtsr-creation div.dtsr-confirmation-text input.dtsr-name-input {
|
||||
width: 66.6%;
|
||||
display: inline-block;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-confirmation-text input.dtsr-check-box,
|
||||
div.dtsr-creation div.dtsr-confirmation-text input.dtsr-check-box {
|
||||
margin-left: 33.3%;
|
||||
margin-right: 14px;
|
||||
display: inline-block;
|
||||
}
|
||||
div.dtsr-confirmation div.dtsr-modal-foot,
|
||||
div.dtsr-creation div.dtsr-modal-foot {
|
||||
text-align: right;
|
||||
padding-top: 10px;
|
||||
}
|
||||
div.dtsr-confirmation span.dtsr-modal-error,
|
||||
div.dtsr-creation span.dtsr-modal-error {
|
||||
color: red;
|
||||
font-size: 0.9em;
|
||||
}
|
||||
|
||||
div.dtsr-creation {
|
||||
top: 10%;
|
||||
}
|
||||
|
||||
div.dtsr-check-row {
|
||||
padding-top: 0px;
|
||||
}
|
||||
|
||||
div.dtsr-popover-close {
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
right: 10px;
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
text-align: center;
|
||||
border-radius: 3px;
|
||||
cursor: pointer;
|
||||
z-index: 12;
|
||||
}
|
||||
|
||||
div.dtsr-background {
|
||||
z-index: 2002;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: rgba(0, 0, 0, 0.7);
|
||||
background: radial-gradient(ellipse farthest-corner at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
|
||||
}
|
||||
|
||||
div.dt-button-collection h3 {
|
||||
text-align: center;
|
||||
margin-top: 4px;
|
||||
margin-bottom: 8px;
|
||||
font-size: 1.5em;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
div.dt-button-collection span.dtsr-emptyStates {
|
||||
border-radius: 5px;
|
||||
display: inline-block;
|
||||
line-height: 1.6em;
|
||||
white-space: nowrap;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
width: 100%;
|
||||
padding-bottom: 7px;
|
||||
padding-top: 3px;
|
||||
}
|
||||
|
||||
html.dark div.dtsr-confirmation,
|
||||
html.dark div.dtsr-creation,
|
||||
html[data-bs-theme=dark] div.dtsr-confirmation,
|
||||
html[data-bs-theme=dark] div.dtsr-creation {
|
||||
background-color: rgb(33, 37, 41);
|
||||
border: 1px solid rgba(255, 255, 255, 0.15);
|
||||
}
|
||||
html.dark div.dtsr-confirmation button,
|
||||
html.dark div.dtsr-creation button,
|
||||
html[data-bs-theme=dark] div.dtsr-confirmation button,
|
||||
html[data-bs-theme=dark] div.dtsr-creation button {
|
||||
color: inherit;
|
||||
border: 1px solid rgba(255, 255, 255, 0.175);
|
||||
background-color: rgb(47, 52, 56);
|
||||
}
|
||||
html.dark div.dtsr-confirmation button:hover,
|
||||
html.dark div.dtsr-creation button:hover,
|
||||
html[data-bs-theme=dark] div.dtsr-confirmation button:hover,
|
||||
html[data-bs-theme=dark] div.dtsr-creation button:hover {
|
||||
background-color: rgb(64, 69, 73);
|
||||
}
|
||||
|
||||
span.dtsr-check-label {
|
||||
padding-left: 3px;
|
||||
}
|
||||
|
||||
span.dtsr-name-label, span.dtsr-confirmation-message {
|
||||
padding-right: 3px;
|
||||
}
|
||||
|
||||
div.dtsr-confirmation {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
span.dtsr-confirmation-message {
|
||||
padding-top: 0.678571em;
|
||||
padding-bottom: 0.678571em;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
div.dt-btn-split-wrapper {
|
||||
background-color: white !important;
|
||||
}
|
||||
div.dt-btn-split-wrapper button.button {
|
||||
width: calc(100% - 36px) !important;
|
||||
margin: 0px !important;
|
||||
display: inline-block !important;
|
||||
border-top-left-radius: 0.28571429rem !important;
|
||||
border-bottom-left-radius: 0.28571429rem !important;
|
||||
border-top-right-radius: 0px !important;
|
||||
}
|
||||
div.dt-btn-split-wrapper button.dt-btn-split-drop {
|
||||
border-top-right-radius: 0.28571429rem !important;
|
||||
border-bottom-right-radius: 0.28571429rem !important;
|
||||
border-top-left-radius: 0px !important;
|
||||
border-bottom-left-radius: 0px !important;
|
||||
width: 36px !important;
|
||||
}
|
||||
|
||||
span.dtsr-emptyStates {
|
||||
font-size: 1rem;
|
||||
padding: 5px !important;
|
||||
}
|
||||
|
||||
div.dt-button-collection div.ui.basic.vertical.buttons {
|
||||
padding: 4px;
|
||||
padding-bottom: 0px;
|
||||
background: white !important;
|
||||
}
|
||||
div.dt-button-collection div.ui.basic.vertical.buttons h3 {
|
||||
font-size: 1.5rem;
|
||||
line-height: 2rem;
|
||||
}
|
||||
div.dt-button-collection div.ui.basic.vertical.buttons div.dt-btn-split-wrapper {
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
div.dt-button-collection div.ui.basic.vertical.buttons div.dt-btn-split-wrapper button.button {
|
||||
margin-bottom: 4px;
|
||||
border: 1px solid rgba(34, 36, 38, 0.15) !important;
|
||||
}
|
||||
div.dt-button-collection div.ui.basic.vertical.buttons div.dt-btn-split-wrapper button.dt-btn-split-drop {
|
||||
margin-left: -1px;
|
||||
}
|
||||
div.dt-button-collection div.ui.basic.vertical.buttons button.dt-btn-split-drop-button {
|
||||
border: 1px solid rgba(34, 36, 38, 0.15);
|
||||
border-radius: 0.285714rem;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
input.dtsr-name-input {
|
||||
border: 1px solid rgba(24, 26, 28, 0.15);
|
||||
border-radius: 4.6px;
|
||||
line-height: 20px;
|
||||
padding-top: 10.8px;
|
||||
padding-bottom: 10.8px;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
label.dtsr-name-label, label.form-check-label {
|
||||
font-size: 14.9px;
|
||||
}
|
||||
|
||||
div.dtsr-form-row label.dtsr-name-label, div.dtsr-confirmation-text label.dtsr-name-label {
|
||||
line-height: 1.5;
|
||||
padding-top: 5px;
|
||||
}
|
||||
|
||||
div.dtsr-confirmation-text, div.dtsr-creation-form {
|
||||
margin-top: 1.5em;
|
||||
width: 100%;
|
||||
}
|
||||
div.dtsr-confirmation-text label.dtsr-name-label, div.dtsr-creation-form label.dtsr-name-label {
|
||||
width: 33.3%;
|
||||
display: inline-block;
|
||||
text-align: left !important;
|
||||
padding-right: 15px;
|
||||
padding-left: 15px;
|
||||
}
|
||||
div.dtsr-confirmation-text input.dtsr-name-input, div.dtsr-creation-form input.dtsr-name-input {
|
||||
width: 66.6%;
|
||||
display: inline-block;
|
||||
}
|
||||
div.dtsr-confirmation-text input.dtsr-check-box, div.dtsr-creation-form input.dtsr-check-box {
|
||||
margin-left: 33.3%;
|
||||
margin-right: 14px;
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
}
|
1
root/usr/share/javascript/StateRestore/css/stateRestore.semanticui.min.css
vendored
Normal file
1
root/usr/share/javascript/StateRestore/css/stateRestore.semanticui.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
2365
root/usr/share/javascript/StateRestore/js/dataTables.stateRestore.js
Normal file
2365
root/usr/share/javascript/StateRestore/js/dataTables.stateRestore.js
Normal file
File diff suppressed because it is too large
Load Diff
4
root/usr/share/javascript/StateRestore/js/dataTables.stateRestore.min.js
vendored
Normal file
4
root/usr/share/javascript/StateRestore/js/dataTables.stateRestore.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
@@ -0,0 +1,71 @@
|
||||
/*! Bootstrap integration for DataTables' StateRestore
|
||||
* © SpryMedia Ltd - datatables.net/license
|
||||
*/
|
||||
|
||||
(function( factory ){
|
||||
if ( typeof define === 'function' && define.amd ) {
|
||||
// AMD
|
||||
define( ['jquery', 'datatables.net-bs', 'datatables.net-staterestore'], function ( $ ) {
|
||||
return factory( $, window, document );
|
||||
} );
|
||||
}
|
||||
else if ( typeof exports === 'object' ) {
|
||||
// CommonJS
|
||||
var jq = require('jquery');
|
||||
var cjsRequires = function (root, $) {
|
||||
if ( ! $.fn.dataTable ) {
|
||||
require('datatables.net-bs')(root, $);
|
||||
}
|
||||
|
||||
if ( ! $.fn.dataTable.StateRestore ) {
|
||||
require('datatables.net-staterestore')(root, $);
|
||||
}
|
||||
};
|
||||
|
||||
if (typeof window === 'undefined') {
|
||||
module.exports = function (root, $) {
|
||||
if ( ! root ) {
|
||||
// CommonJS environments without a window global must pass a
|
||||
// root. This will give an error otherwise
|
||||
root = window;
|
||||
}
|
||||
|
||||
if ( ! $ ) {
|
||||
$ = jq( root );
|
||||
}
|
||||
|
||||
cjsRequires( root, $ );
|
||||
return factory( $, root, root.document );
|
||||
};
|
||||
}
|
||||
else {
|
||||
cjsRequires( window, jq );
|
||||
module.exports = factory( jq, window, window.document );
|
||||
}
|
||||
}
|
||||
else {
|
||||
// Browser
|
||||
factory( jQuery, window, document );
|
||||
}
|
||||
}(function( $, window, document, undefined ) {
|
||||
'use strict';
|
||||
var DataTable = $.fn.dataTable;
|
||||
|
||||
|
||||
$.extend(true, DataTable.StateRestoreCollection.classes, {
|
||||
checkBox: 'dtsr-check-box form-check-input',
|
||||
creationButton: 'dtsr-creation-button btn btn-default',
|
||||
creationForm: 'dtsr-creation-form modal-body',
|
||||
creationText: 'dtsr-creation-text modal-header',
|
||||
creationTitle: 'dtsr-creation-title modal-title',
|
||||
nameInput: 'dtsr-name-input form-control'
|
||||
});
|
||||
$.extend(true, DataTable.StateRestore.classes, {
|
||||
confirmationButton: 'dtsr-confirmation-button btn btn-default',
|
||||
confirmationTitle: 'dtsr-confirmation title modal-header',
|
||||
input: 'dtsr-input form-control'
|
||||
});
|
||||
|
||||
|
||||
return DataTable;
|
||||
}));
|
4
root/usr/share/javascript/StateRestore/js/stateRestore.bootstrap.min.js
vendored
Normal file
4
root/usr/share/javascript/StateRestore/js/stateRestore.bootstrap.min.js
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
/*! Bootstrap integration for DataTables' StateRestore
|
||||
* © SpryMedia Ltd - datatables.net/license
|
||||
*/
|
||||
!function(n){var o,r;"function"==typeof define&&define.amd?define(["jquery","datatables.net-bs","datatables.net-staterestore"],function(t){return n(t,window,document)}):"object"==typeof exports?(o=require("jquery"),r=function(t,e){e.fn.dataTable||require("datatables.net-bs")(t,e),e.fn.dataTable.StateRestore||require("datatables.net-staterestore")(t,e)},"undefined"==typeof window?module.exports=function(t,e){return t=t||window,e=e||o(t),r(t,e),n(e,0,t.document)}:(r(window,o),module.exports=n(o,window,window.document))):n(jQuery,window,document)}(function(t,e,n,o){"use strict";var r=t.fn.dataTable;return t.extend(!0,r.StateRestoreCollection.classes,{checkBox:"dtsr-check-box form-check-input",creationButton:"dtsr-creation-button btn btn-default",creationForm:"dtsr-creation-form modal-body",creationText:"dtsr-creation-text modal-header",creationTitle:"dtsr-creation-title modal-title",nameInput:"dtsr-name-input form-control"}),t.extend(!0,r.StateRestore.classes,{confirmationButton:"dtsr-confirmation-button btn btn-default",confirmationTitle:"dtsr-confirmation title modal-header",input:"dtsr-input form-control"}),r});
|
@@ -0,0 +1,70 @@
|
||||
/*! Bootstrap integration for DataTables' StateRestore
|
||||
* © SpryMedia Ltd - datatables.net/license
|
||||
*/
|
||||
|
||||
(function( factory ){
|
||||
if ( typeof define === 'function' && define.amd ) {
|
||||
// AMD
|
||||
define( ['jquery', 'datatables.net-bs4', 'datatables.net-staterestore'], function ( $ ) {
|
||||
return factory( $, window, document );
|
||||
} );
|
||||
}
|
||||
else if ( typeof exports === 'object' ) {
|
||||
// CommonJS
|
||||
var jq = require('jquery');
|
||||
var cjsRequires = function (root, $) {
|
||||
if ( ! $.fn.dataTable ) {
|
||||
require('datatables.net-bs4')(root, $);
|
||||
}
|
||||
|
||||
if ( ! $.fn.dataTable.StateRestore ) {
|
||||
require('datatables.net-staterestore')(root, $);
|
||||
}
|
||||
};
|
||||
|
||||
if (typeof window === 'undefined') {
|
||||
module.exports = function (root, $) {
|
||||
if ( ! root ) {
|
||||
// CommonJS environments without a window global must pass a
|
||||
// root. This will give an error otherwise
|
||||
root = window;
|
||||
}
|
||||
|
||||
if ( ! $ ) {
|
||||
$ = jq( root );
|
||||
}
|
||||
|
||||
cjsRequires( root, $ );
|
||||
return factory( $, root, root.document );
|
||||
};
|
||||
}
|
||||
else {
|
||||
cjsRequires( window, jq );
|
||||
module.exports = factory( jq, window, window.document );
|
||||
}
|
||||
}
|
||||
else {
|
||||
// Browser
|
||||
factory( jQuery, window, document );
|
||||
}
|
||||
}(function( $, window, document, undefined ) {
|
||||
'use strict';
|
||||
var DataTable = $.fn.dataTable;
|
||||
|
||||
|
||||
$.extend(true, DataTable.StateRestoreCollection.classes, {
|
||||
checkBox: 'dtsr-check-box form-check-input',
|
||||
creationButton: 'dtsr-creation-button btn btn-secondary',
|
||||
creationForm: 'dtsr-creation-form modal-body',
|
||||
creationText: 'dtsr-creation-text modal-header',
|
||||
creationTitle: 'dtsr-creation-title modal-title',
|
||||
nameInput: 'dtsr-name-input form-control'
|
||||
});
|
||||
$.extend(true, DataTable.StateRestore.classes, {
|
||||
confirmationButton: 'dtsr-confirmation-button btn btn-secondary',
|
||||
input: 'dtsr-input form-control'
|
||||
});
|
||||
|
||||
|
||||
return DataTable;
|
||||
}));
|
4
root/usr/share/javascript/StateRestore/js/stateRestore.bootstrap4.min.js
vendored
Normal file
4
root/usr/share/javascript/StateRestore/js/stateRestore.bootstrap4.min.js
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
/*! Bootstrap integration for DataTables' StateRestore
|
||||
* © SpryMedia Ltd - datatables.net/license
|
||||
*/
|
||||
!function(n){var o,r;"function"==typeof define&&define.amd?define(["jquery","datatables.net-bs4","datatables.net-staterestore"],function(t){return n(t,window,document)}):"object"==typeof exports?(o=require("jquery"),r=function(t,e){e.fn.dataTable||require("datatables.net-bs4")(t,e),e.fn.dataTable.StateRestore||require("datatables.net-staterestore")(t,e)},"undefined"==typeof window?module.exports=function(t,e){return t=t||window,e=e||o(t),r(t,e),n(e,0,t.document)}:(r(window,o),module.exports=n(o,window,window.document))):n(jQuery,window,document)}(function(t,e,n,o){"use strict";var r=t.fn.dataTable;return t.extend(!0,r.StateRestoreCollection.classes,{checkBox:"dtsr-check-box form-check-input",creationButton:"dtsr-creation-button btn btn-secondary",creationForm:"dtsr-creation-form modal-body",creationText:"dtsr-creation-text modal-header",creationTitle:"dtsr-creation-title modal-title",nameInput:"dtsr-name-input form-control"}),t.extend(!0,r.StateRestore.classes,{confirmationButton:"dtsr-confirmation-button btn btn-secondary",input:"dtsr-input form-control"}),r});
|
@@ -0,0 +1,73 @@
|
||||
/*! Bootstrap integration for DataTables' StateRestore
|
||||
* © SpryMedia Ltd - datatables.net/license
|
||||
*/
|
||||
|
||||
(function( factory ){
|
||||
if ( typeof define === 'function' && define.amd ) {
|
||||
// AMD
|
||||
define( ['jquery', 'datatables.net-bs5', 'datatables.net-staterestore'], function ( $ ) {
|
||||
return factory( $, window, document );
|
||||
} );
|
||||
}
|
||||
else if ( typeof exports === 'object' ) {
|
||||
// CommonJS
|
||||
var jq = require('jquery');
|
||||
var cjsRequires = function (root, $) {
|
||||
if ( ! $.fn.dataTable ) {
|
||||
require('datatables.net-bs5')(root, $);
|
||||
}
|
||||
|
||||
if ( ! $.fn.dataTable.StateRestore ) {
|
||||
require('datatables.net-staterestore')(root, $);
|
||||
}
|
||||
};
|
||||
|
||||
if (typeof window === 'undefined') {
|
||||
module.exports = function (root, $) {
|
||||
if ( ! root ) {
|
||||
// CommonJS environments without a window global must pass a
|
||||
// root. This will give an error otherwise
|
||||
root = window;
|
||||
}
|
||||
|
||||
if ( ! $ ) {
|
||||
$ = jq( root );
|
||||
}
|
||||
|
||||
cjsRequires( root, $ );
|
||||
return factory( $, root, root.document );
|
||||
};
|
||||
}
|
||||
else {
|
||||
cjsRequires( window, jq );
|
||||
module.exports = factory( jq, window, window.document );
|
||||
}
|
||||
}
|
||||
else {
|
||||
// Browser
|
||||
factory( jQuery, window, document );
|
||||
}
|
||||
}(function( $, window, document, undefined ) {
|
||||
'use strict';
|
||||
var DataTable = $.fn.dataTable;
|
||||
|
||||
|
||||
$.extend(true, DataTable.StateRestoreCollection.classes, {
|
||||
checkBox: 'dtsr-check-box form-check-input',
|
||||
checkLabel: 'dtsr-check-label form-check-label',
|
||||
checkRow: 'dtsr-check-row form-check',
|
||||
creationButton: 'dtsr-creation-button btn btn-secondary',
|
||||
creationForm: 'dtsr-creation-form modal-body',
|
||||
creationText: 'dtsr-creation-text modal-header',
|
||||
creationTitle: 'dtsr-creation-title modal-title',
|
||||
nameInput: 'dtsr-name-input form-control',
|
||||
nameLabel: 'dtsr-name-label form-label'
|
||||
});
|
||||
$.extend(true, DataTable.StateRestore.classes, {
|
||||
confirmationButton: 'dtsr-confirmation-button btn btn-secondary',
|
||||
input: 'dtsr-input form-control'
|
||||
});
|
||||
|
||||
|
||||
return DataTable;
|
||||
}));
|
4
root/usr/share/javascript/StateRestore/js/stateRestore.bootstrap5.min.js
vendored
Normal file
4
root/usr/share/javascript/StateRestore/js/stateRestore.bootstrap5.min.js
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
/*! Bootstrap integration for DataTables' StateRestore
|
||||
* © SpryMedia Ltd - datatables.net/license
|
||||
*/
|
||||
!function(n){var o,r;"function"==typeof define&&define.amd?define(["jquery","datatables.net-bs5","datatables.net-staterestore"],function(e){return n(e,window,document)}):"object"==typeof exports?(o=require("jquery"),r=function(e,t){t.fn.dataTable||require("datatables.net-bs5")(e,t),t.fn.dataTable.StateRestore||require("datatables.net-staterestore")(e,t)},"undefined"==typeof window?module.exports=function(e,t){return e=e||window,t=t||o(e),r(e,t),n(t,0,e.document)}:(r(window,o),module.exports=n(o,window,window.document))):n(jQuery,window,document)}(function(e,t,n,o){"use strict";var r=e.fn.dataTable;return e.extend(!0,r.StateRestoreCollection.classes,{checkBox:"dtsr-check-box form-check-input",checkLabel:"dtsr-check-label form-check-label",checkRow:"dtsr-check-row form-check",creationButton:"dtsr-creation-button btn btn-secondary",creationForm:"dtsr-creation-form modal-body",creationText:"dtsr-creation-text modal-header",creationTitle:"dtsr-creation-title modal-title",nameInput:"dtsr-name-input form-control",nameLabel:"dtsr-name-label form-label"}),e.extend(!0,r.StateRestore.classes,{confirmationButton:"dtsr-confirmation-button btn btn-secondary",input:"dtsr-input form-control"}),r});
|
@@ -0,0 +1,71 @@
|
||||
/*! Bootstrap integration for DataTables' StateRestore
|
||||
* © SpryMedia Ltd - datatables.net/license
|
||||
*/
|
||||
|
||||
(function( factory ){
|
||||
if ( typeof define === 'function' && define.amd ) {
|
||||
// AMD
|
||||
define( ['jquery', 'datatables.net-bm', 'datatables.net-staterestore'], function ( $ ) {
|
||||
return factory( $, window, document );
|
||||
} );
|
||||
}
|
||||
else if ( typeof exports === 'object' ) {
|
||||
// CommonJS
|
||||
var jq = require('jquery');
|
||||
var cjsRequires = function (root, $) {
|
||||
if ( ! $.fn.dataTable ) {
|
||||
require('datatables.net-bm')(root, $);
|
||||
}
|
||||
|
||||
if ( ! $.fn.dataTable.StateRestore ) {
|
||||
require('datatables.net-staterestore')(root, $);
|
||||
}
|
||||
};
|
||||
|
||||
if (typeof window === 'undefined') {
|
||||
module.exports = function (root, $) {
|
||||
if ( ! root ) {
|
||||
// CommonJS environments without a window global must pass a
|
||||
// root. This will give an error otherwise
|
||||
root = window;
|
||||
}
|
||||
|
||||
if ( ! $ ) {
|
||||
$ = jq( root );
|
||||
}
|
||||
|
||||
cjsRequires( root, $ );
|
||||
return factory( $, root, root.document );
|
||||
};
|
||||
}
|
||||
else {
|
||||
cjsRequires( window, jq );
|
||||
module.exports = factory( jq, window, window.document );
|
||||
}
|
||||
}
|
||||
else {
|
||||
// Browser
|
||||
factory( jQuery, window, document );
|
||||
}
|
||||
}(function( $, window, document, undefined ) {
|
||||
'use strict';
|
||||
var DataTable = $.fn.dataTable;
|
||||
|
||||
|
||||
$.extend(true, DataTable.StateRestoreCollection.classes, {
|
||||
checkRow: 'dtsr-check-row checkbox',
|
||||
creationButton: 'dtsr-creation-button button',
|
||||
creationForm: 'dtsr-creation-form modal-content',
|
||||
creationText: 'dtsr-creation-text modal-header',
|
||||
creationTitle: 'dtsr-creation-title modal-card-title',
|
||||
nameInput: 'dtsr-name-input input'
|
||||
});
|
||||
$.extend(true, DataTable.StateRestore.classes, {
|
||||
confirmationButton: 'dtsr-confirmation-button button',
|
||||
confirmationTitle: 'dtsr-confirmation-title modal-card-title',
|
||||
input: 'dtsr-input input'
|
||||
});
|
||||
|
||||
|
||||
return DataTable;
|
||||
}));
|
4
root/usr/share/javascript/StateRestore/js/stateRestore.bulma.min.js
vendored
Normal file
4
root/usr/share/javascript/StateRestore/js/stateRestore.bulma.min.js
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
/*! Bootstrap integration for DataTables' StateRestore
|
||||
* © SpryMedia Ltd - datatables.net/license
|
||||
*/
|
||||
!function(n){var o,r;"function"==typeof define&&define.amd?define(["jquery","datatables.net-bm","datatables.net-staterestore"],function(t){return n(t,window,document)}):"object"==typeof exports?(o=require("jquery"),r=function(t,e){e.fn.dataTable||require("datatables.net-bm")(t,e),e.fn.dataTable.StateRestore||require("datatables.net-staterestore")(t,e)},"undefined"==typeof window?module.exports=function(t,e){return t=t||window,e=e||o(t),r(t,e),n(e,0,t.document)}:(r(window,o),module.exports=n(o,window,window.document))):n(jQuery,window,document)}(function(t,e,n,o){"use strict";var r=t.fn.dataTable;return t.extend(!0,r.StateRestoreCollection.classes,{checkRow:"dtsr-check-row checkbox",creationButton:"dtsr-creation-button button",creationForm:"dtsr-creation-form modal-content",creationText:"dtsr-creation-text modal-header",creationTitle:"dtsr-creation-title modal-card-title",nameInput:"dtsr-name-input input"}),t.extend(!0,r.StateRestore.classes,{confirmationButton:"dtsr-confirmation-button button",confirmationTitle:"dtsr-confirmation-title modal-card-title",input:"dtsr-input input"}),r});
|
@@ -0,0 +1,58 @@
|
||||
/*! Bootstrap integration for DataTables' StateRestore
|
||||
* © SpryMedia Ltd - datatables.net/license
|
||||
*/
|
||||
|
||||
(function( factory ){
|
||||
if ( typeof define === 'function' && define.amd ) {
|
||||
// AMD
|
||||
define( ['jquery', 'datatables.net-dt', 'datatables.net-staterestore'], function ( $ ) {
|
||||
return factory( $, window, document );
|
||||
} );
|
||||
}
|
||||
else if ( typeof exports === 'object' ) {
|
||||
// CommonJS
|
||||
var jq = require('jquery');
|
||||
var cjsRequires = function (root, $) {
|
||||
if ( ! $.fn.dataTable ) {
|
||||
require('datatables.net-dt')(root, $);
|
||||
}
|
||||
|
||||
if ( ! $.fn.dataTable.StateRestore ) {
|
||||
require('datatables.net-staterestore')(root, $);
|
||||
}
|
||||
};
|
||||
|
||||
if (typeof window === 'undefined') {
|
||||
module.exports = function (root, $) {
|
||||
if ( ! root ) {
|
||||
// CommonJS environments without a window global must pass a
|
||||
// root. This will give an error otherwise
|
||||
root = window;
|
||||
}
|
||||
|
||||
if ( ! $ ) {
|
||||
$ = jq( root );
|
||||
}
|
||||
|
||||
cjsRequires( root, $ );
|
||||
return factory( $, root, root.document );
|
||||
};
|
||||
}
|
||||
else {
|
||||
cjsRequires( window, jq );
|
||||
module.exports = factory( jq, window, window.document );
|
||||
}
|
||||
}
|
||||
else {
|
||||
// Browser
|
||||
factory( jQuery, window, document );
|
||||
}
|
||||
}(function( $, window, document, undefined ) {
|
||||
'use strict';
|
||||
var DataTable = $.fn.dataTable;
|
||||
|
||||
|
||||
|
||||
|
||||
return DataTable;
|
||||
}));
|
4
root/usr/share/javascript/StateRestore/js/stateRestore.dataTables.min.js
vendored
Normal file
4
root/usr/share/javascript/StateRestore/js/stateRestore.dataTables.min.js
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
/*! Bootstrap integration for DataTables' StateRestore
|
||||
* © SpryMedia Ltd - datatables.net/license
|
||||
*/
|
||||
!function(n){var o,d;"function"==typeof define&&define.amd?define(["jquery","datatables.net-dt","datatables.net-staterestore"],function(e){return n(e,window,document)}):"object"==typeof exports?(o=require("jquery"),d=function(e,t){t.fn.dataTable||require("datatables.net-dt")(e,t),t.fn.dataTable.StateRestore||require("datatables.net-staterestore")(e,t)},"undefined"==typeof window?module.exports=function(e,t){return e=e||window,t=t||o(e),d(e,t),n(t,0,e.document)}:(d(window,o),module.exports=n(o,window,window.document))):n(jQuery,window,document)}(function(e,t,n,o){"use strict";return e.fn.dataTable});
|
@@ -0,0 +1,73 @@
|
||||
/*! Bootstrap integration for DataTables' StateRestore
|
||||
* © SpryMedia Ltd - datatables.net/license
|
||||
*/
|
||||
|
||||
(function( factory ){
|
||||
if ( typeof define === 'function' && define.amd ) {
|
||||
// AMD
|
||||
define( ['jquery', 'datatables.net-zf', 'datatables.net-staterestore'], function ( $ ) {
|
||||
return factory( $, window, document );
|
||||
} );
|
||||
}
|
||||
else if ( typeof exports === 'object' ) {
|
||||
// CommonJS
|
||||
var jq = require('jquery');
|
||||
var cjsRequires = function (root, $) {
|
||||
if ( ! $.fn.dataTable ) {
|
||||
require('datatables.net-zf')(root, $);
|
||||
}
|
||||
|
||||
if ( ! $.fn.dataTable.StateRestore ) {
|
||||
require('datatables.net-staterestore')(root, $);
|
||||
}
|
||||
};
|
||||
|
||||
if (typeof window === 'undefined') {
|
||||
module.exports = function (root, $) {
|
||||
if ( ! root ) {
|
||||
// CommonJS environments without a window global must pass a
|
||||
// root. This will give an error otherwise
|
||||
root = window;
|
||||
}
|
||||
|
||||
if ( ! $ ) {
|
||||
$ = jq( root );
|
||||
}
|
||||
|
||||
cjsRequires( root, $ );
|
||||
return factory( $, root, root.document );
|
||||
};
|
||||
}
|
||||
else {
|
||||
cjsRequires( window, jq );
|
||||
module.exports = factory( jq, window, window.document );
|
||||
}
|
||||
}
|
||||
else {
|
||||
// Browser
|
||||
factory( jQuery, window, document );
|
||||
}
|
||||
}(function( $, window, document, undefined ) {
|
||||
'use strict';
|
||||
var DataTable = $.fn.dataTable;
|
||||
|
||||
|
||||
$.extend(true, DataTable.StateRestoreCollection.classes, {
|
||||
checkBox: 'dtsr-check-box form-check-input',
|
||||
checkLabel: 'dtsr-check-label form-check-label',
|
||||
checkRow: 'dtsr-check-row form',
|
||||
creationButton: 'dtsr-creation-button button',
|
||||
creationForm: 'dtsr-creation-form modal-body',
|
||||
creationText: 'dtsr-creation-text modal-header',
|
||||
creationTitle: 'dtsr-creation-title modal-title',
|
||||
nameInput: 'dtsr-name-input form-control',
|
||||
nameLabel: 'dtsr-name-label form-label',
|
||||
nameRow: 'dtsr-name-row medium-6 cell'
|
||||
});
|
||||
$.extend(true, DataTable.StateRestore.classes, {
|
||||
confirmationButton: 'dtsr-confirmation-button button'
|
||||
});
|
||||
|
||||
|
||||
return DataTable;
|
||||
}));
|
4
root/usr/share/javascript/StateRestore/js/stateRestore.foundation.min.js
vendored
Normal file
4
root/usr/share/javascript/StateRestore/js/stateRestore.foundation.min.js
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
/*! Bootstrap integration for DataTables' StateRestore
|
||||
* © SpryMedia Ltd - datatables.net/license
|
||||
*/
|
||||
!function(o){var n,r;"function"==typeof define&&define.amd?define(["jquery","datatables.net-zf","datatables.net-staterestore"],function(e){return o(e,window,document)}):"object"==typeof exports?(n=require("jquery"),r=function(e,t){t.fn.dataTable||require("datatables.net-zf")(e,t),t.fn.dataTable.StateRestore||require("datatables.net-staterestore")(e,t)},"undefined"==typeof window?module.exports=function(e,t){return e=e||window,t=t||n(e),r(e,t),o(t,0,e.document)}:(r(window,n),module.exports=o(n,window,window.document))):o(jQuery,window,document)}(function(e,t,o,n){"use strict";var r=e.fn.dataTable;return e.extend(!0,r.StateRestoreCollection.classes,{checkBox:"dtsr-check-box form-check-input",checkLabel:"dtsr-check-label form-check-label",checkRow:"dtsr-check-row form",creationButton:"dtsr-creation-button button",creationForm:"dtsr-creation-form modal-body",creationText:"dtsr-creation-text modal-header",creationTitle:"dtsr-creation-title modal-title",nameInput:"dtsr-name-input form-control",nameLabel:"dtsr-name-label form-label",nameRow:"dtsr-name-row medium-6 cell"}),e.extend(!0,r.StateRestore.classes,{confirmationButton:"dtsr-confirmation-button button"}),r});
|
@@ -0,0 +1,74 @@
|
||||
/*! Bootstrap integration for DataTables' StateRestore
|
||||
* © SpryMedia Ltd - datatables.net/license
|
||||
*/
|
||||
|
||||
(function( factory ){
|
||||
if ( typeof define === 'function' && define.amd ) {
|
||||
// AMD
|
||||
define( ['jquery', 'datatables.net-jqui', 'datatables.net-staterestore'], function ( $ ) {
|
||||
return factory( $, window, document );
|
||||
} );
|
||||
}
|
||||
else if ( typeof exports === 'object' ) {
|
||||
// CommonJS
|
||||
var jq = require('jquery');
|
||||
var cjsRequires = function (root, $) {
|
||||
if ( ! $.fn.dataTable ) {
|
||||
require('datatables.net-jqui')(root, $);
|
||||
}
|
||||
|
||||
if ( ! $.fn.dataTable.StateRestore ) {
|
||||
require('datatables.net-staterestore')(root, $);
|
||||
}
|
||||
};
|
||||
|
||||
if (typeof window === 'undefined') {
|
||||
module.exports = function (root, $) {
|
||||
if ( ! root ) {
|
||||
// CommonJS environments without a window global must pass a
|
||||
// root. This will give an error otherwise
|
||||
root = window;
|
||||
}
|
||||
|
||||
if ( ! $ ) {
|
||||
$ = jq( root );
|
||||
}
|
||||
|
||||
cjsRequires( root, $ );
|
||||
return factory( $, root, root.document );
|
||||
};
|
||||
}
|
||||
else {
|
||||
cjsRequires( window, jq );
|
||||
module.exports = factory( jq, window, window.document );
|
||||
}
|
||||
}
|
||||
else {
|
||||
// Browser
|
||||
factory( jQuery, window, document );
|
||||
}
|
||||
}(function( $, window, document, undefined ) {
|
||||
'use strict';
|
||||
var DataTable = $.fn.dataTable;
|
||||
|
||||
|
||||
$.extend(true, DataTable.StateRestoreCollection.classes, {
|
||||
checkBox: 'dtsr-check-box form-check-input',
|
||||
checkLabel: 'dtsr-check-label form-check-label',
|
||||
checkRow: 'dtsr-check-row form',
|
||||
creationButton: 'dtsr-creation-button ui-button ui-corner-all ui-widget',
|
||||
creationForm: 'dtsr-creation-form modal-body',
|
||||
creationText: 'dtsr-creation-text modal-header',
|
||||
creationTitle: 'dtsr-creation-title modal-title',
|
||||
nameInput: 'dtsr-name-input form-control',
|
||||
nameLabel: 'dtsr-name-label form-label',
|
||||
nameRow: 'dtsr-name-row medium-6 cell'
|
||||
});
|
||||
$.extend(true, DataTable.StateRestore.classes, {
|
||||
// eslint-disable-next-line max-len
|
||||
confirmationButton: 'dtsr-confirmation-button ui-button ui-state-default ui-button-text-only ui-corner-all ui-widget'
|
||||
});
|
||||
|
||||
|
||||
return DataTable;
|
||||
}));
|
4
root/usr/share/javascript/StateRestore/js/stateRestore.jqueryui.min.js
vendored
Normal file
4
root/usr/share/javascript/StateRestore/js/stateRestore.jqueryui.min.js
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
/*! Bootstrap integration for DataTables' StateRestore
|
||||
* © SpryMedia Ltd - datatables.net/license
|
||||
*/
|
||||
!function(o){var n,r;"function"==typeof define&&define.amd?define(["jquery","datatables.net-jqui","datatables.net-staterestore"],function(e){return o(e,window,document)}):"object"==typeof exports?(n=require("jquery"),r=function(e,t){t.fn.dataTable||require("datatables.net-jqui")(e,t),t.fn.dataTable.StateRestore||require("datatables.net-staterestore")(e,t)},"undefined"==typeof window?module.exports=function(e,t){return e=e||window,t=t||n(e),r(e,t),o(t,0,e.document)}:(r(window,n),module.exports=o(n,window,window.document))):o(jQuery,window,document)}(function(e,t,o,n){"use strict";var r=e.fn.dataTable;return e.extend(!0,r.StateRestoreCollection.classes,{checkBox:"dtsr-check-box form-check-input",checkLabel:"dtsr-check-label form-check-label",checkRow:"dtsr-check-row form",creationButton:"dtsr-creation-button ui-button ui-corner-all ui-widget",creationForm:"dtsr-creation-form modal-body",creationText:"dtsr-creation-text modal-header",creationTitle:"dtsr-creation-title modal-title",nameInput:"dtsr-name-input form-control",nameLabel:"dtsr-name-label form-label",nameRow:"dtsr-name-row medium-6 cell"}),e.extend(!0,r.StateRestore.classes,{confirmationButton:"dtsr-confirmation-button ui-button ui-state-default ui-button-text-only ui-corner-all ui-widget"}),r});
|
@@ -0,0 +1,76 @@
|
||||
/*! Bootstrap integration for DataTables' StateRestore
|
||||
* © SpryMedia Ltd - datatables.net/license
|
||||
*/
|
||||
|
||||
(function( factory ){
|
||||
if ( typeof define === 'function' && define.amd ) {
|
||||
// AMD
|
||||
define( ['jquery', 'datatables.net-se', 'datatables.net-staterestore'], function ( $ ) {
|
||||
return factory( $, window, document );
|
||||
} );
|
||||
}
|
||||
else if ( typeof exports === 'object' ) {
|
||||
// CommonJS
|
||||
var jq = require('jquery');
|
||||
var cjsRequires = function (root, $) {
|
||||
if ( ! $.fn.dataTable ) {
|
||||
require('datatables.net-se')(root, $);
|
||||
}
|
||||
|
||||
if ( ! $.fn.dataTable.StateRestore ) {
|
||||
require('datatables.net-staterestore')(root, $);
|
||||
}
|
||||
};
|
||||
|
||||
if (typeof window === 'undefined') {
|
||||
module.exports = function (root, $) {
|
||||
if ( ! root ) {
|
||||
// CommonJS environments without a window global must pass a
|
||||
// root. This will give an error otherwise
|
||||
root = window;
|
||||
}
|
||||
|
||||
if ( ! $ ) {
|
||||
$ = jq( root );
|
||||
}
|
||||
|
||||
cjsRequires( root, $ );
|
||||
return factory( $, root, root.document );
|
||||
};
|
||||
}
|
||||
else {
|
||||
cjsRequires( window, jq );
|
||||
module.exports = factory( jq, window, window.document );
|
||||
}
|
||||
}
|
||||
else {
|
||||
// Browser
|
||||
factory( jQuery, window, document );
|
||||
}
|
||||
}(function( $, window, document, undefined ) {
|
||||
'use strict';
|
||||
var DataTable = $.fn.dataTable;
|
||||
|
||||
|
||||
$.extend(true, DataTable.StateRestoreCollection.classes, {
|
||||
checkBox: 'dtsr-check-box form-check-input',
|
||||
checkLabel: 'dtsr-check-label form-check-label',
|
||||
checkRow: 'dtsr-check-row form',
|
||||
creationButton: 'dtsr-creation-button ui button primary',
|
||||
creationForm: 'dtsr-creation-form modal-body',
|
||||
creationText: 'dtsr-creation-text modal-header',
|
||||
creationTitle: 'dtsr-creation-title modal-title',
|
||||
nameInput: 'dtsr-name-input form-control',
|
||||
nameLabel: 'dtsr-name-label form-label',
|
||||
nameRow: 'dtsr-name-row ui input'
|
||||
});
|
||||
$.extend(true, DataTable.StateRestore.classes, {
|
||||
confirmation: 'dtsr-confirmation modal',
|
||||
confirmationButton: 'dtsr-confirmation-button ui button primary',
|
||||
confirmationText: 'dtsr-confirmation-text modal-body',
|
||||
renameModal: 'dtsr-rename-modal ui input'
|
||||
});
|
||||
|
||||
|
||||
return DataTable;
|
||||
}));
|
4
root/usr/share/javascript/StateRestore/js/stateRestore.semanticui.min.js
vendored
Normal file
4
root/usr/share/javascript/StateRestore/js/stateRestore.semanticui.min.js
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
/*! Bootstrap integration for DataTables' StateRestore
|
||||
* © SpryMedia Ltd - datatables.net/license
|
||||
*/
|
||||
!function(o){var n,r;"function"==typeof define&&define.amd?define(["jquery","datatables.net-se","datatables.net-staterestore"],function(t){return o(t,window,document)}):"object"==typeof exports?(n=require("jquery"),r=function(t,e){e.fn.dataTable||require("datatables.net-se")(t,e),e.fn.dataTable.StateRestore||require("datatables.net-staterestore")(t,e)},"undefined"==typeof window?module.exports=function(t,e){return t=t||window,e=e||n(t),r(t,e),o(e,0,t.document)}:(r(window,n),module.exports=o(n,window,window.document))):o(jQuery,window,document)}(function(t,e,o,n){"use strict";var r=t.fn.dataTable;return t.extend(!0,r.StateRestoreCollection.classes,{checkBox:"dtsr-check-box form-check-input",checkLabel:"dtsr-check-label form-check-label",checkRow:"dtsr-check-row form",creationButton:"dtsr-creation-button ui button primary",creationForm:"dtsr-creation-form modal-body",creationText:"dtsr-creation-text modal-header",creationTitle:"dtsr-creation-title modal-title",nameInput:"dtsr-name-input form-control",nameLabel:"dtsr-name-label form-label",nameRow:"dtsr-name-row ui input"}),t.extend(!0,r.StateRestore.classes,{confirmation:"dtsr-confirmation modal",confirmationButton:"dtsr-confirmation-button ui button primary",confirmationText:"dtsr-confirmation-text modal-body",renameModal:"dtsr-rename-modal ui input"}),r});
|
Reference in New Issue
Block a user