diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2023-10-13 13:02:27 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2023-10-13 13:02:27 -0400 |
commit | dd9b9ac1c2f032e02757e7e4fa4aa588234933d4 (patch) | |
tree | bd0b69a6d8b2a196a9d771e8a03e91b6e88ff87f /app/assets | |
parent | 250ef8b5d4f6cb457c4976528f72f6ea7bf5f6cc (diff) | |
download | thoughts-dd9b9ac1c2f032e02757e7e4fa4aa588234933d4.tar.gz thoughts-dd9b9ac1c2f032e02757e7e4fa4aa588234933d4.tar.bz2 thoughts-dd9b9ac1c2f032e02757e7e4fa4aa588234933d4.zip |
Admin comment page pagination
Diffstat (limited to 'app/assets')
-rw-r--r-- | app/assets/stylesheets/admin/dashboard.scss | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/app/assets/stylesheets/admin/dashboard.scss b/app/assets/stylesheets/admin/dashboard.scss index c75b95a..60c257a 100644 --- a/app/assets/stylesheets/admin/dashboard.scss +++ b/app/assets/stylesheets/admin/dashboard.scss | |||
@@ -1,3 +1,42 @@ | |||
1 | // Place all the styles related to the Admin::Dashboard controller here. | 1 | // Place all the styles related to the Admin::Dashboard controller here. |
2 | // They will automatically be included in application.css. | 2 | // They will automatically be included in application.css. |
3 | // You can use Sass (SCSS) here: http://sass-lang.com/ | 3 | // You can use Sass (SCSS) here: http://sass-lang.com/ |
4 | |||
5 | .pagination { | ||
6 | background: #f1f1f1; | ||
7 | border: 1px solid #e5e5e5; | ||
8 | text-align: center; | ||
9 | padding: 1em; | ||
10 | cursor: default; | ||
11 | |||
12 | a, span { | ||
13 | padding: 0.2em 0.3em; | ||
14 | } | ||
15 | |||
16 | .disabled { | ||
17 | color: #aaaaaa; | ||
18 | } | ||
19 | |||
20 | .current { | ||
21 | font-style: normal; | ||
22 | font-weight: bold; | ||
23 | background-color: #bebebe; | ||
24 | display: inline-block; | ||
25 | width: 1.4em; | ||
26 | height: 1.4em; | ||
27 | line-height: 1.5; | ||
28 | -moz-border-radius: 1em; | ||
29 | -webkit-border-radius: 1em; | ||
30 | border-radius: 1em; | ||
31 | text-shadow: rgba(255, 255, 255, 0.8) 1px 1px 1px; | ||
32 | } | ||
33 | |||
34 | a { | ||
35 | text-decoration: none; | ||
36 | color: black; | ||
37 | |||
38 | &:hover, &:focus { | ||
39 | text-decoration: underline; | ||
40 | } | ||
41 | } | ||
42 | } | ||