login

<     >

2023-09-23 07:56:19 (UTC-03:00)

Marcel Rodrigues <marcelgmr@gmail.com>

css: fix indentation

diff --git a/view/board.css b/view/board.css
index c41ffad..933f233 100644
--- a/view/board.css
+++ b/view/board.css
@@ -1,41 +1,41 @@
 .kanban-board {
-    display: flex;
-    justify-content: space-between;
-    padding: 20px;
+  display: flex;
+  justify-content: space-between;
+  padding: 20px;
 }
 
 .kanban-column {
-    background-color: #f2f2f2;
-    width: 30%;
-    margin: 2px;
-    padding: 8px;
-    border-radius: 10px;
-    box-shadow: 0px 0px 3px gray;
+  background-color: #f2f2f2;
+  width: 30%;
+  margin: 2px;
+  padding: 8px;
+  border-radius: 10px;
+  box-shadow: 0px 0px 3px gray;
 }
 
 .kanban-column h2 {
-    margin-bottom: 20px;
+  margin-bottom: 20px;
 }
 
 .kanban-card {
-    background-color: white;
-    padding: 10px;
-    margin-bottom: 10px;
-    border-radius: 5px;
-    border-width: 4px;
-    border-style: solid;
-    box-shadow: 0px 0px 3px grey;
+  background-color: white;
+  padding: 10px;
+  margin-bottom: 10px;
+  border-radius: 5px;
+  border-width: 4px;
+  border-style: solid;
+  box-shadow: 0px 0px 3px grey;
 }
 
 .buttons {
-    display: flex;
-    justify-content: space-between;
-    margin-top: 10px;
+  display: flex;
+  justify-content: space-between;
+  margin-top: 10px;
 }
 
 button {
-    padding: 5px;
-    border: none;
-    background-color: #ddd;
-    cursor: pointer;
+  padding: 5px;
+  border: none;
+  background-color: #ddd;
+  cursor: pointer;
 }

diff --git a/view/form.css b/view/form.css
index 2f3af01..2b300d2 100644
--- a/view/form.css
+++ b/view/form.css
@@ -1,45 +1,45 @@
-    .ul-form {
-      padding: 0;
-      list-style-type: none;
-    }
-    .field-list tr td {
-      padding: 2px 7px;
-    }
-    .field-list tr td:first-child {
-      background-color: #EEF7DC;
-      font-weight: bold;
-      text-align: right;
-    }
-    .field-list tr td:nth-child(2) {
-      font-size: 18px;
-    }
-    .flat-field {
-      margin: 5px;
-      font-size: 18px;
-      background: white;
-      border-width: 1px;
-      border-style: solid;
-      border-color: #B4C2AA;
-      border-radius: 0px;
-    }
-    .flat-field:invalid {
-      border-color: lightcoral;
-    }
-    .flat-button {
-      margin: 10px;
-      box-shadow: none;
-      background: none;
-      background-color: #F5FFE2;
-      border-radius: 6px;
-      border: 3px solid #B4C2AA;
-      font-weight: bold;
-      padding: 5px 20px;
-      cursor: default;
-      color: black;
-      font-size: 16px;
-      text-decoration: none;
-      text-shadow: 1px 1px 0px white;
-    }
-    .flat-button:hover {
-      background-color: var(--color-2);
-    }
+.ul-form {
+  padding: 0;
+  list-style-type: none;
+}
+.field-list tr td {
+  padding: 2px 7px;
+}
+.field-list tr td:first-child {
+  background-color: #eef7dc;
+  font-weight: bold;
+  text-align: right;
+}
+.field-list tr td:nth-child(2) {
+  font-size: 18px;
+}
+.flat-field {
+  margin: 5px;
+  font-size: 18px;
+  background: white;
+  border-width: 1px;
+  border-style: solid;
+  border-color: #b4c2aa;
+  border-radius: 0px;
+}
+.flat-field:invalid {
+  border-color: lightcoral;
+}
+.flat-button {
+  margin: 10px;
+  box-shadow: none;
+  background: none;
+  background-color: #f5ffe2;
+  border-radius: 6px;
+  border: 3px solid #b4c2aa;
+  font-weight: bold;
+  padding: 5px 20px;
+  cursor: default;
+  color: black;
+  font-size: 16px;
+  text-decoration: none;
+  text-shadow: 1px 1px 0px white;
+}
+.flat-button:hover {
+  background-color: var(--color-2);
+}

diff --git a/view/menu.css b/view/menu.css
index 40d3244..0c3f64c 100644
--- a/view/menu.css
+++ b/view/menu.css
@@ -1,20 +1,20 @@
 .menu-bar {
-    display: flex;
-    justify-content: space-between;
-    width: 100%;
-    background-color: #ccf;
-    margin: -8px;
-    padding: 10px 0;
+  display: flex;
+  justify-content: space-between;
+  width: 100%;
+  background-color: #ccf;
+  margin: -8px;
+  padding: 10px 0;
 }
 
 .menu-bar a {
-    margin: 0 10px;
-    color: black;
-    font-family: sans-serif;
-    font-weight: bold;
-    text-decoration: none;
+  margin: 0 10px;
+  color: black;
+  font-family: sans-serif;
+  font-weight: bold;
+  text-decoration: none;
 }
 
 .menu-bar a:hover {
-    text-decoration: underline;
+  text-decoration: underline;
 }

diff --git a/view/table.css b/view/table.css
index b31e871..028f346 100644
--- a/view/table.css
+++ b/view/table.css
@@ -1,13 +1,15 @@
-    table {
-      border-collapse: collapse;
-    }
-    th { background-color: #EEEEEE; }
-    th, td {
-      padding: 3px 12px;
-      border: 1px solid #006;
-    }
-    .center {
-      display: flex;
-      align-items: center;
-      justify-content: center;
-    }
+table {
+  border-collapse: collapse;
+}
+th {
+  background-color: #eeeeee;
+}
+th, td {
+  padding: 3px 12px;
+  border: 1px solid #006;
+}
+.center {
+  display: flex;
+  align-items: center;
+  justify-content: center;
+}

diff --git a/view/ticket.css b/view/ticket.css
index 108c572..596e1b8 100644
--- a/view/ticket.css
+++ b/view/ticket.css
@@ -1,45 +1,46 @@
-.ticket-details, .comment {
-    padding: 0px 20px 10px;
-    background-color: #f2f2f2;
-    border-radius: 5px;
-    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
-    margin-bottom: 20px;
+.ticket-details,
+.comment {
+  padding: 0px 20px 10px;
+  background-color: #f2f2f2;
+  border-radius: 5px;
+  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
+  margin-bottom: 20px;
 }
 
 .ticket-details h1 {
-    margin-bottom: 20px;
+  margin-bottom: 20px;
 }
 
 .header-details {
-    display: flex;
-    justify-content: space-between;
-    font-size: 0.8em;
+  display: flex;
+  justify-content: space-between;
+  font-size: 0.8em;
 }
 
 .footer-details {
-    display: flex;
-    justify-content: space-between;
-    font-size: 0.8em;
-    margin-top: 10px;
+  display: flex;
+  justify-content: space-between;
+  font-size: 0.8em;
+  margin-top: 10px;
 }
 
 .footer-details form {
-    display: inline-block;
+  display: inline-block;
 }
 
 .comments-section {
-    padding: 20px;
+  padding: 20px;
 }
 
 .comment {
-    background-color: white;
+  background-color: white;
 }
 
 .comment p:last-child {
-    margin-bottom: 0;
+  margin-bottom: 0;
 }
 
 .shift {
-    font-size: 1.3em;
-    margin-top: 0px;
+  font-size: 1.3em;
+  margin-top: 0px;
 }