-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
958 additions
and
345 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,212 @@ | ||
.moka-admin-interface{display:flex;justify-content:center;flex-direction:column}.moka-admin-interface .left{width:100%}.moka-admin-interface .right{width:100%;margin-top:20px}.moka-admin-interface .right .optimist{background:#fff;padding:40px;border-radius:4px}.moka-admin-interface .right .optimist .accordion{background-color:#eee;color:#444;cursor:pointer;padding:18px;border:0;text-align:left;outline:0;font-size:15px;transition:.4s;display:block;border-bottom:1px solid #fff}.moka-admin-interface .right .optimist .accordion:hover,.moka-admin-interface .right .optimist .active{background-color:#ccc}.moka-admin-interface .right .optimist .accordion:after{content:"+";color:#777;font-weight:700;float:right;margin-left:5px}.moka-admin-interface .right .optimist .active:after{content:"−"}.moka-admin-interface .right .optimist .panel{background-color:#fff;max-height:0;overflow:hidden;transition:max-height .2s ease-out}#comission-rates{font-family:Arial,Helvetica,sans-serif;border-collapse:collapse;width:100%}#comission-rates td{padding:8px}#comission-rates td,#comission-rates th{border:1px solid #ddd}#comission-rates thead{background-color:#333;color:#fff}#comission-rates tr:nth-child(even){background-color:#f2f2f2}#comission-rates tr:hover{background-color:#ddd}#comission-rates th{padding:12px 8px;text-align:left;background-color:#04aa6d;color:#fff}#comission-rates input[type=number]{width:59px!important;font-size:11px}#comission-rates img{width:100px}.center-title h2{display:flex;justify-content:space-between}.center-title h2 a:hover{background:#d00!important} | ||
mark {background-color:unset !important;color:#fff;padding:4px 10px;border-radius: 4px;} | ||
.active_subs { background:rgb(51, 121, 51) !important;cursor:pointer} | ||
.passive_subs {background:#b13f3f !important;cursor:pointer} | ||
.subscription-payManually { padding:4px 10px;border-radius: 4px;background:#3f83b1;color:#fff;cursor: pointer;} | ||
.subscription-cancelManually { padding:4px 10px;border-radius: 4px;background:#b13f74;color:#fff;cursor: pointer;} | ||
.subscription-noActions { padding:4px 0;border-bottom:1px solid #6c6c6c;color:#6c6c6c;opacity: 0.8;cursor: help;} | ||
.moka-success{background:#04aa6d;color:#fff;} | ||
.moka-failed{background:#b13f3f;color:#fff;} | ||
.moka-admin-test-details { display:flex; justify-content: space-between;} | ||
.moka-admin-test-results {overflow:hidden;overflow-y:auto; max-height:200px; background: #fff; padding: 1rem; margin: 1rem 0;} | ||
.moka-admin-test-results:empty {display:none;} | ||
.js-update-comission-rates,.moka-admin-dotest {color:#fff;background:#333!important;padding:10px;cursor:pointer;font-size:12px} | ||
.js-update-comission-rates:hover, .moka-admin-dotest:hover {background:#d00!important} | ||
.moka-admin-savesettings{color:#fff;background:#d00!important;padding:10px;cursor:pointer;font-size:12px} | ||
.moka-admin-savesettings:hover {background:#333!important} | ||
.moka-admin-interface { | ||
display: flex; | ||
justify-content: center; | ||
flex-direction: column | ||
} | ||
|
||
.moka-admin-interface .left { | ||
width: 100% | ||
} | ||
|
||
.moka-admin-interface .right { | ||
width: 100%; | ||
margin-top: 20px | ||
} | ||
|
||
.moka-admin-interface .right .optimist { | ||
background: #fff; | ||
padding: 40px; | ||
border-radius: 4px | ||
} | ||
|
||
.moka-admin-interface .right .optimist .accordion { | ||
background-color: #eee; | ||
color: #444; | ||
cursor: pointer; | ||
padding: 18px; | ||
border: 0; | ||
text-align: left; | ||
outline: 0; | ||
font-size: 15px; | ||
transition: .4s; | ||
display: block; | ||
border-bottom: 1px solid #fff | ||
} | ||
|
||
.moka-admin-interface .right .optimist .accordion:hover, | ||
.moka-admin-interface .right .optimist .active { | ||
background-color: #ccc | ||
} | ||
|
||
.moka-admin-interface .right .optimist .accordion:after { | ||
content: "+"; | ||
color: #777; | ||
font-weight: 700; | ||
float: right; | ||
margin-left: 5px | ||
} | ||
|
||
.moka-admin-interface .right .optimist .active:after { | ||
content: "−" | ||
} | ||
|
||
.moka-admin-interface .right .optimist .panel { | ||
background-color: #fff; | ||
max-height: 0; | ||
overflow: hidden; | ||
transition: max-height .2s ease-out | ||
} | ||
|
||
.moka-admin-interface button:disabled { | ||
cursor: not-allowed; | ||
opacity: .7; | ||
pointer-events: none; | ||
} | ||
|
||
#comission-rates { | ||
font-family: Arial, Helvetica, sans-serif; | ||
border-collapse: collapse; | ||
width: 100% | ||
} | ||
|
||
#comission-rates td { | ||
padding: 8px | ||
} | ||
|
||
#comission-rates td, | ||
#comission-rates th { | ||
border: 1px solid #ddd | ||
} | ||
|
||
#comission-rates thead { | ||
background-color: #333; | ||
color: #fff | ||
} | ||
|
||
#comission-rates tr:nth-child(even) { | ||
background-color: #f2f2f2 | ||
} | ||
|
||
#comission-rates tr:hover { | ||
background-color: #ddd | ||
} | ||
|
||
#comission-rates th { | ||
padding: 12px 8px; | ||
text-align: left; | ||
background-color: #04aa6d; | ||
color: #fff | ||
} | ||
|
||
#comission-rates input[type=number] { | ||
width: 59px !important; | ||
font-size: 11px | ||
} | ||
|
||
#comission-rates img { | ||
width: 100px | ||
} | ||
|
||
.center-title h2 { | ||
display: flex; | ||
justify-content: space-between | ||
} | ||
|
||
.center-title h2 a:hover { | ||
background: #d00 !important | ||
} | ||
|
||
mark { | ||
background-color: unset !important; | ||
color: #fff; | ||
padding: 4px 10px; | ||
border-radius: 4px; | ||
} | ||
|
||
.active_subs { | ||
background: rgb(51, 121, 51) !important; | ||
cursor: pointer | ||
} | ||
|
||
.passive_subs { | ||
background: #b13f3f !important; | ||
cursor: pointer | ||
} | ||
|
||
.subscription-payManually { | ||
padding: 4px 10px; | ||
border-radius: 4px; | ||
background: #3f83b1; | ||
color: #fff; | ||
cursor: pointer; | ||
} | ||
|
||
.subscription-cancelManually { | ||
padding: 4px 10px; | ||
border-radius: 4px; | ||
background: #b13f74; | ||
color: #fff; | ||
cursor: pointer; | ||
} | ||
|
||
.subscription-noActions { | ||
padding: 4px 0; | ||
border-bottom: 1px solid #6c6c6c; | ||
color: #6c6c6c; | ||
opacity: 0.8; | ||
cursor: help; | ||
} | ||
|
||
.moka-success { | ||
background: #04aa6d; | ||
color: #fff; | ||
} | ||
|
||
.moka-failed { | ||
background: #b13f3f; | ||
color: #fff; | ||
} | ||
|
||
.moka-admin-test-details { | ||
display: flex; | ||
justify-content: space-between; | ||
} | ||
|
||
.moka-admin-test-results { | ||
overflow: hidden; | ||
overflow-y: auto; | ||
max-height: 200px; | ||
background: #fff; | ||
padding: 1rem; | ||
margin: 1rem 0; | ||
} | ||
|
||
.moka-admin-test-results:empty { | ||
display: none; | ||
} | ||
|
||
.js-update-comission-rates, | ||
.moka-admin-dotest { | ||
color: #fff; | ||
background: #333 !important; | ||
padding: 10px; | ||
cursor: pointer; | ||
font-size: 12px | ||
} | ||
|
||
.js-update-comission-rates:hover, | ||
.moka-admin-dotest:hover { | ||
background: #d00 !important | ||
} | ||
|
||
.moka-admin-savesettings { | ||
color: #fff; | ||
background: #d00 !important; | ||
padding: 10px; | ||
cursor: pointer; | ||
font-size: 12px | ||
} | ||
|
||
.moka-admin-savesettings:hover { | ||
background: #333 !important | ||
} |
Oops, something went wrong.