summaryrefslogtreecommitdiff
path: root/public
diff options
context:
space:
mode:
authorRafael Marçalo <raroma09@gmail.com>2022-10-22 15:08:47 +0100
committerRafael Marçalo <raroma09@gmail.com>2022-10-22 15:08:47 +0100
commit4998f1dcbe3a4b2d20548977d34ac17b4fb66414 (patch)
tree07f7d26b986d2a4f276156370322191b5a844c27 /public
parent8343330ba6163e1b1beb2e23c8ec3902033078e2 (diff)
Limited text in each td name field
Diffstat (limited to 'public')
-rw-r--r--public/css/extra.css17
1 files changed, 14 insertions, 3 deletions
diff --git a/public/css/extra.css b/public/css/extra.css
index 0cc2011..978d2cb 100644
--- a/public/css/extra.css
+++ b/public/css/extra.css
@@ -1,18 +1,29 @@
/*!
* Extra set of rules over Bootstrap
*/
-.card:hover {
+.card:hover
+{
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
transition: all .5s;
}
-.green-text {
+.green-text
+{
color: rgb(120, 153, 34);
}
-.text-bg-dark-shade {
+.text-bg-dark-shade
+{
--bs-bg-opacity: 1;
color: #fff !important;
background-color: rgba(47, 49, 54, var(--bs-bg-opacity)) !important;
;
+}
+
+.limit-text
+{
+ max-width: 30rem;
+ text-overflow: ellipsis;
+ overflow: hidden;
+ white-space: nowrap;
} \ No newline at end of file