+
+ Successfully added user account {{new_user.login}}.
+
+
+
+ error_outline
+ There was an error adding the user account.
+
+
+
diff --git a/cmd/drone-server/static/styles/alert.css b/cmd/drone-server/static/styles/alert.css
index 4f01e71c2..f9420d8eb 100644
--- a/cmd/drone-server/static/styles/alert.css
+++ b/cmd/drone-server/static/styles/alert.css
@@ -24,6 +24,11 @@
color: #fff;
line-height:24px;
}
+.alert-success {
+ background: #a3be8c;
+ color: #fff;
+ line-height:24px;
+}
.alert-create-not-found {
color: rgba(255,255,255,0.95);
background:#59abe3;
@@ -33,6 +38,7 @@
width:100%;
font-family: Roboto;
}
+.alert-success em,
.alert-error em,
.alert-create-not-found em {
font-weight: bold;
diff --git a/cmd/drone-server/static/styles/label.css b/cmd/drone-server/static/styles/label.css
new file mode 100644
index 000000000..190880e53
--- /dev/null
+++ b/cmd/drone-server/static/styles/label.css
@@ -0,0 +1,17 @@
+.label {
+ color: #FFF;
+ background:#8fa1b3;
+ font-size: 10px;
+ text-transform: uppercase;
+ padding: 4px 8px;
+ vertical-align: middle;
+ border-radius: 2px;
+ margin-left: 15px;
+}
+
+.label-success {
+ background: #a3be8c;
+}
+.label-failure {
+ background: #bf616a;
+}
\ No newline at end of file
diff --git a/cmd/drone-server/static/styles/list.css b/cmd/drone-server/static/styles/list.css
index bdfec5adf..ebeac0f22 100644
--- a/cmd/drone-server/static/styles/list.css
+++ b/cmd/drone-server/static/styles/list.css
@@ -68,4 +68,4 @@
.list em,
.list em {
color:#65737e;
-}
+}
\ No newline at end of file
diff --git a/cmd/drone-server/static/styles/main.css b/cmd/drone-server/static/styles/main.css
index 31b9984f4..8e01655eb 100644
--- a/cmd/drone-server/static/styles/main.css
+++ b/cmd/drone-server/static/styles/main.css
@@ -342,6 +342,10 @@ li menu {
position:absolute;
top:15px;
right:0px;
+ display:none;
+}
+li:hover menu {
+ display:inline-block;
}
li menu .button {
border-radius:50%;
@@ -352,6 +356,21 @@ li menu .button {
color:#dfe1e8;
background: #fff;
+ border:1px solid #FFF;
+ outline:none;
+ cursor:pointer;
+
+
+ width: auto;
+ text-transform: uppercase;
+ padding: 0px 10px;
+ border-radius: 2px;
+ font-size: 11px;
+ line-height: 30px;
+ height: auto;
+ margin-left: 10px;
+
+
}
li menu .button:hover {
border:1px solid #a7adba;
@@ -369,8 +388,10 @@ li menu .button.success {
color: #a3be8c;
background:#FFF;
+
+
}
-li menu .button.danger:hover {
+li menu .button.danger {
color: #FFF;
background: #bf616a;
@@ -379,6 +400,8 @@ li menu .button.danger:hover {
border:1px solid #bf616a;
}
+
+
/*
* Tail button to follow a build
*/