lalala 4.0.0.dev.275 → 4.0.0.dev.277

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 516beae401a055b6b4ff0e4be439d662e4724320
4
- data.tar.gz: 23ff79bee97b10067c5c8d714ac75452e8b20523
3
+ metadata.gz: e278e14f0eb5c4746f3aa83df32fa07142d9cb70
4
+ data.tar.gz: 8f2ed2866f9b5d290a60cf0808005740b30be35b
5
5
  SHA512:
6
- metadata.gz: ef962f9342106f776682ae780bc2b852ddfa9dd4e56ea01cc24795ea7388036bfa4e3743cf45d4707c4e31dc1d73402bc5e9466be8f8caaa8ab8bd99bca615d7
7
- data.tar.gz: daf28c65cc9878acd86eeb389412677bc61ef941146452aed8e543f67d37dc42c706552349475691bdbda92c0306b6a25add0f855019a63d6d642ec6938f1c4e
6
+ metadata.gz: 61dfdecbf9aedd55b4234ef4638abf8e8e93aacd5ab94a2315b896025f874b42ea8b37ab0e7bab02e3ac6c0baa3db47c8c84107d64d683cec4ae11cba964c8d3
7
+ data.tar.gz: c510a027e73b58fd62493def9398a5319d59cbd176b12c8c89e1edd0e95c7539468d1931bcaf60d7c2fb1a91e711a621e44911866669fe5f697f18ef9d85c18d
@@ -38,7 +38,7 @@
38
38
  position: relative;
39
39
  display: block;
40
40
  overflow: hidden;
41
- padding: 5px 6px 5px 8px;
41
+ padding: 7px 6px 7px 8px;
42
42
  border: 1px solid gray(220);
43
43
  border-radius: 5px;
44
44
  background-color: #fff;
@@ -122,6 +122,32 @@ select:focus {
122
122
  }
123
123
  }
124
124
 
125
+ // actions
126
+ .actions {
127
+
128
+ ol {
129
+ @include pie-clearfix;
130
+ border-top: 1px solid gray(220);
131
+ padding: 15px 0 15px $label_width;
132
+ margin: 15px 0 30px 0;
133
+
134
+ // float li items next to eachother
135
+ li {
136
+ float: left;
137
+ margin: 0 7px 0 0;
138
+
139
+ &.cancel {
140
+ // cancel (not an input, but a plain <a href>)
141
+ a {
142
+ @extend %btn;
143
+ @extend %btn.gray;
144
+ @include icon('bullet_orange', 'button');
145
+ }
146
+ }
147
+ }
148
+ }
149
+ }
150
+
125
151
  // input line
126
152
  .input {
127
153
  position: relative;
@@ -131,6 +157,7 @@ select:focus {
131
157
  width: $label_width;
132
158
  }
133
159
 
160
+ a,
134
161
  input,
135
162
  textarea,
136
163
  select {
@@ -15,7 +15,7 @@ $icons: "accept", "add", "anchor", "application", "application_add", "applicatio
15
15
  background-repeat: no-repeat;
16
16
 
17
17
  @if $type == 'button' {
18
- padding-left: 29px;
18
+ padding-left: 29px !important;
19
19
  }
20
20
  }
21
21
 
@@ -36,6 +36,13 @@
36
36
  }
37
37
 
38
38
  &.filter_string.select_and_search {
39
+
40
+ // make a little bit bigger to fit input field
41
+ a.chosen-single {
42
+ padding: 7px 6px 8px 8px;
43
+ margin-top: -6px;
44
+ }
45
+
39
46
  input {
40
47
  margin: 0 0 0 10px;
41
48
  width: 60%;
@@ -1,11 +1,11 @@
1
1
  .sidebar_section {
2
- @include border-radius(3px);
2
+ @include border-radius(5px);
3
3
  border: 1px solid gray(220);
4
4
  margin: 0 30px 20px 0;
5
5
  overflow: hidden;
6
6
 
7
7
  h3 {
8
- background-color: gray(247);
8
+ background-color: gray(245);
9
9
  border-bottom: 1px solid gray(220);
10
10
  color: gray(70);
11
11
  font-size: 14px !important;
@@ -15,7 +15,7 @@
15
15
  }
16
16
 
17
17
  .panel_contents {
18
- padding: 15px 20px 15px 20px;
18
+ padding: 15px 20px 10px 20px;
19
19
 
20
20
  // LALALA specific styling
21
21
  //
@@ -1,6 +1,6 @@
1
1
  module Lalala
2
2
  VERSION = "4.0.0"
3
- BUILD = "275"
3
+ BUILD = "277"
4
4
 
5
5
  if BUILD != ("{{BUILD_NUMBER" + "}}") # prevent sed replacement (see script/ci)
6
6
  BUILD_VERSION = "#{VERSION}.dev.#{BUILD}"
@@ -26,10 +26,10 @@ ActiveAdmin.register Article do
26
26
 
27
27
  end
28
28
 
29
- sidebar "Actions", :only => [:edit] do
29
+ sidebar "Information", :only => [:edit] do
30
30
 
31
31
  div :class => "lalala sidebar message", :id => "lalala_sidebar_message" do
32
- "This item has been updated last at <strong>Feb 14th, 2014</strong>".html_safe
32
+ "This item has been updated last at <strong>Feb 14th, 2014</strong> by <a href='#link-to-hans-profile'>Hans</a>.".html_safe
33
33
  end
34
34
 
35
35
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lalala
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.0.dev.275
4
+ version: 4.0.0.dev.277
5
5
  platform: ruby
6
6
  authors:
7
7
  - Simon Menke