Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/passman.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/sass
diff options
context:
space:
mode:
authorbrantje <brantje@gmail.com>2017-02-18 17:26:08 +0300
committerbrantje <brantje@gmail.com>2017-02-22 20:02:55 +0300
commit9e7f47a715724fc5cf01d5ddcf11a73b723d224c (patch)
treed5438b886c2481aa8c818a6f12cf032b5a616b1b /sass
parent3dd9e84de7c306dd6c543bd4e69432ff3935cbb4 (diff)
Add a generic CSV importer
Diffstat (limited to 'sass')
-rw-r--r--sass/settings.scss33
1 files changed, 26 insertions, 7 deletions
diff --git a/sass/settings.scss b/sass/settings.scss
index 6d29e792..51f1a415 100644
--- a/sass/settings.scss
+++ b/sass/settings.scss
@@ -20,31 +20,50 @@
*
*/
-.scan-result-table{
+.scan-result-table {
margin-top: 10px;
- .score{
+ .score {
padding-left: 0px;
padding-right: 15px;
}
}
-.error{
+
+.error {
color: #ce3702;
}
+
.import_log {
max-height: 600px;
overflow-y: auto;
- textarea{
+ textarea {
width: 90%;
height: 200px;
}
}
-.tab_container.settings{
+
+.tab_container.settings {
margin-bottom: 50px;
}
-.import-steps{
+
+.import-steps {
padding-left: 16px;
- li{
+ li {
list-style-type: disc;
}
margin-bottom: 10px;
+}
+.import-table-outter {
+ overflow-x: scroll;
+}
+.import-table {
+ padding-right: 15px;
+ .inspect{
+ text-align: center;
+ width: 25px;
+ cursor: pointer;
+ }
+ th, td {
+ text-align: left;
+ padding: 3px 5px;
+ }
} \ No newline at end of file