flattened_active_admin 0.0.3 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d2404aadbb509d11a8519e08cba5be3b64a93725
|
|
4
|
+
data.tar.gz: 89102ef0b0408df2e033d765a98541578bbfaa71
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d5482e2925c7071755d7f961d9c5a0d26166f4b2edfe5eaa870f0b0a63e8da682564cb3eced1d2ea744074378f2c5f09321128b114f2530b0984cba9c4eaf0fb
|
|
7
|
+
data.tar.gz: d319d580895c3039faec27a4b60fae8278c7164cbdb667648d0c640a610cc39331fbc48bd5f32081aa90b018c3563832f451bbc2cb96e127129fd6f2ca9c206b
|
|
@@ -40,3 +40,95 @@ body {
|
|
|
40
40
|
padding: 0;
|
|
41
41
|
color: $text-color;
|
|
42
42
|
}
|
|
43
|
+
|
|
44
|
+
// Clear Filter + Batch actions buttons
|
|
45
|
+
form.filter_form a.clear_filters_btn,
|
|
46
|
+
a.table_tools_button,
|
|
47
|
+
.table_tools .dropdown_menu_button,
|
|
48
|
+
form fieldset.buttons li.cancel a,
|
|
49
|
+
form fieldset.actions li.cancel a,
|
|
50
|
+
.ui-dialog .ui-dialog-buttonpane button:last-child{
|
|
51
|
+
background-color: $secondary-color !important;
|
|
52
|
+
border: solid 1px lighten($primary-color, 50%) !important;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
// Table styling
|
|
57
|
+
form fieldset legend span,
|
|
58
|
+
table.index_table th,
|
|
59
|
+
.sidebar_section > h3 {
|
|
60
|
+
border-left: 0 !important;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
table.index_table th:last-child {
|
|
64
|
+
border-right: 0 !important;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
table.index_table tr.even {
|
|
68
|
+
background-color: #fff !important;
|
|
69
|
+
|
|
70
|
+
td {
|
|
71
|
+
background: none !important;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
table.index_table tr.selected {
|
|
76
|
+
background-color: $secondary-color !important;
|
|
77
|
+
|
|
78
|
+
td {
|
|
79
|
+
background: none !important;
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
// Form styling
|
|
83
|
+
.sidebar_section,form fieldset.inputs {
|
|
84
|
+
background-color: #fff !important;
|
|
85
|
+
border: 1px solid $secondary-color !important;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
form input[type=text], form input[type=password], form input[type=email], form input[type=number], form input[type=url], form input[type=tel], form textarea {
|
|
89
|
+
border: 1px solid lighten($primary-color, 50%) !important;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
// Dropdown menu styling
|
|
93
|
+
.dropdown_menu .dropdown_menu_list_wrapper {
|
|
94
|
+
box-shadow: rgba(0, 0, 0, 0.4) 0 1px 3px !important;
|
|
95
|
+
background-color: $primary-color !important;
|
|
96
|
+
border: solid 1px $primary-color !important;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.dropdown_menu .dropdown_menu_list_wrapper .dropdown_menu_list {
|
|
100
|
+
border: solid 1px $secondary-color !important;
|
|
101
|
+
box-shadow: rgba(0,0,0,0) 0 0 0 !important;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
// Popover styling
|
|
105
|
+
.ui-dialog .ui-dialog-titlebar {
|
|
106
|
+
text-align: center !important;
|
|
107
|
+
font-size: 1.3em !important;
|
|
108
|
+
padding: 20px !important;
|
|
109
|
+
background: 0 !important;
|
|
110
|
+
line-height: 24px !important;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.ui-dialog-buttonset {
|
|
114
|
+
text-align: center !important;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
// Date picker styling
|
|
118
|
+
.ui-datepicker-month,
|
|
119
|
+
.ui-datepicker-year{
|
|
120
|
+
font-size: 0.8em !important;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
// Sizes
|
|
124
|
+
$border-width: 1px !default;
|
|
125
|
+
$horizontal-page-margin: 30px !default;
|
|
126
|
+
$sidebar-width: 270px !default;
|
|
127
|
+
$cell-padding: 5px 10px 3px 10px !default;
|
|
128
|
+
$cell-horizontal-padding: 12px !default;
|
|
129
|
+
$section-padding: 15px !default;
|
|
130
|
+
$text-input-horizontal-padding: 10px !default;
|
|
131
|
+
$text-input-total-padding: $text-input-horizontal-padding * 2 + $border-width * 2;
|
|
132
|
+
|
|
133
|
+
$blank-slate-border: 1px dashed #DADADA !default;
|
|
134
|
+
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: flattened_active_admin
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Isaac Norman
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-12-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -118,7 +118,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
118
118
|
version: '0'
|
|
119
119
|
requirements: []
|
|
120
120
|
rubyforge_project:
|
|
121
|
-
rubygems_version: 2.2.
|
|
121
|
+
rubygems_version: 2.2.0
|
|
122
122
|
signing_key:
|
|
123
123
|
specification_version: 4
|
|
124
124
|
summary: A Simple Add on to Active Admin to give it a flatter feel.
|