summaryrefslogtreecommitdiffstats
path: root/public/less
diff options
context:
space:
mode:
authorUnknwon <u@gogs.io>2015-07-08 01:09:03 +0800
committerUnknwon <u@gogs.io>2015-07-08 01:09:03 +0800
commit5dd3dd71a0529590a209c0e58e0a962b83515ae8 (patch)
tree9abda9a51cd7b9cc3b9a4fe65588da7ea980e7e8 /public/less
parentffd17924fd0b2f3a6f7f9b82f7193462a150a4b7 (diff)
downloadgitea-5dd3dd71a0529590a209c0e58e0a962b83515ae8.tar.gz
gitea-5dd3dd71a0529590a209c0e58e0a962b83515ae8.zip
UI: install - database settings
Diffstat (limited to 'public/less')
-rw-r--r--public/less/_base.less5
-rw-r--r--public/less/_form.less8
-rw-r--r--public/less/_install.less22
-rw-r--r--public/less/gogs.less4
4 files changed, 38 insertions, 1 deletions
diff --git a/public/less/_base.less b/public/less/_base.less
index 5f22bc3236..e6ca408087 100644
--- a/public/less/_base.less
+++ b/public/less/_base.less
@@ -62,6 +62,11 @@ footer {
}
}
}
+
+.hide {
+ display: none;
+}
+
.generate-img(16);
.generate-img(@n, @i: 1) when (@i =< @n) {
.img-@{i} {
diff --git a/public/less/_form.less b/public/less/_form.less
new file mode 100644
index 0000000000..3cc1c7f5e3
--- /dev/null
+++ b/public/less/_form.less
@@ -0,0 +1,8 @@
+.form {
+ .help {
+ color: #999999;
+ padding-top: .6em;
+ padding-bottom: .6em;
+ display: inline-block;
+ }
+} \ No newline at end of file
diff --git a/public/less/_install.less b/public/less/_install.less
new file mode 100644
index 0000000000..36d28eeaac
--- /dev/null
+++ b/public/less/_install.less
@@ -0,0 +1,22 @@
+.install {
+ padding-top: 45px;
+ padding-bottom: @footer-margin * 3;
+ .attached.header {
+ background: #f0f0f0;
+ }
+ form {
+ label {
+ text-align: right;
+ width: 40% !important;
+ }
+ input {
+ width: 35% !important;
+ }
+ .field {
+ text-align: left;
+ .help {
+ margin-left: 41%;
+ }
+ }
+ }
+} \ No newline at end of file
diff --git a/public/less/gogs.less b/public/less/gogs.less
index d4d8f8469a..8b0fe1d538 100644
--- a/public/less/gogs.less
+++ b/public/less/gogs.less
@@ -1,3 +1,5 @@
@import "_octicons";
@import "_base";
-@import "_home"; \ No newline at end of file
+@import "_home";
+@import "_install";
+@import "_form"; \ No newline at end of file