aboutsummaryrefslogtreecommitdiff
path: root/ihatemoney/static/css
diff options
context:
space:
mode:
authorAlexis Metaireau <alexis@notmyidea.org>2019-10-06 21:20:47 +0200
committerGitHub <noreply@github.com>2019-10-06 21:20:47 +0200
commit4b01276d60ed56de0a64d3122910e6b10577bce7 (patch)
treef6e5458ef4d556e8d452aa2e1a55eac9cc600ce4 /ihatemoney/static/css
parent1f539b5c0d6d68897bcdb4cdf1f3f81debac49a9 (diff)
parente453c917ed630614cbc6ed1400833b344548a504 (diff)
downloadihatemoney-mirror-4b01276d60ed56de0a64d3122910e6b10577bce7.zip
ihatemoney-mirror-4b01276d60ed56de0a64d3122910e6b10577bce7.tar.gz
ihatemoney-mirror-4b01276d60ed56de0a64d3122910e6b10577bce7.tar.bz2
Merge pull request #479 from LeoMouyna:feature/external-link-bill-form
feat: Optional field 'external link' in bill form.
Diffstat (limited to 'ihatemoney/static/css')
-rw-r--r--ihatemoney/static/css/main.css19
1 files changed, 11 insertions, 8 deletions
diff --git a/ihatemoney/static/css/main.css b/ihatemoney/static/css/main.css
index acc95a1..52bd77b 100644
--- a/ihatemoney/static/css/main.css
+++ b/ihatemoney/static/css/main.css
@@ -32,7 +32,7 @@ body {
@media (min-width: 992px) {
.projects-item {
- margin-left: auto!important;
+ margin-left: auto !important;
}
}
@@ -108,7 +108,6 @@ body {
.identifier {
margin-bottom: 0;
}
-
}
#add-member-form {
@@ -132,7 +131,7 @@ body {
/* Home */
.home-container {
- background: linear-gradient(150deg, #abe128 0%, #43CA61 100%);
+ background: linear-gradient(150deg, #abe128 0%, #43ca61 100%);
}
.home {
padding-top: 1em;
@@ -146,7 +145,7 @@ body {
min-width: 25em;
border: 0;
border-radius: 0;
- box-shadow: 0px 0px 10px rgba(83, 88, 93, .40);
+ box-shadow: 0px 0px 10px rgba(83, 88, 93, 0.4);
margin-right: 25px;
margin-bottom: 20px;
margin-left: 25px;
@@ -159,7 +158,6 @@ body {
.empty-bill {
margin-top: 5rem !important;
-
}
.empty-bill .card {
border: 0;
@@ -240,7 +238,7 @@ footer .footer-right a {
@-moz-document url-prefix() {
/** Firefox style fix **/
footer .footer-right a {
- padding-top: 2px
+ padding-top: 2px;
}
}
footer .footer-right a:hover {
@@ -290,7 +288,8 @@ footer .footer-left {
}
.bill-actions > .delete,
-.bill-actions > .edit {
+.bill-actions > .edit,
+.bill-actions > .see {
font-size: 0px;
display: block;
width: 16px;
@@ -308,6 +307,10 @@ footer .footer-left {
background: url("../images/edit.png") no-repeat right;
}
+.bill-actions > .see {
+ background: url("../images/see.png") no-repeat right;
+}
+
#bill_table {
margin-top: 30px;
}
@@ -483,4 +486,4 @@ footer .icon svg {
}
.icon.icon-white {
fill: white;
-} \ No newline at end of file
+}