responsive_active_admin 0.0.1 → 0.0.2

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: 1d32e6e938bb78d3dc14ab5704b1f9c77bcf9d2a
4
- data.tar.gz: a1b291c0bbeeeb9f8d65233b4a0a6ba2b6c56552
3
+ metadata.gz: 36e437003e5d0771ed590fd89da3b35e5a0f2e2c
4
+ data.tar.gz: c3744fade96cb9bf51605ffbc55c3802b4dae1ca
5
5
  SHA512:
6
- metadata.gz: bfcd3aab7a3e976c77a37692f13af3533b14d4095888b7e9a7d1c38f011669a35b1cca7c358c688b371cc3e7fa2257ff98ee0cb4addc3b7af819579c6150eefb
7
- data.tar.gz: 244e794b2fa11d941925c61048f7a61ddb4e39733555ea0936b1daf10c143eb1c46491512db9f390c3fe170a2849dc7bed58752ba5b3abe5fb2211e00f77d45a
6
+ metadata.gz: 6d6f1e5b8037e805a44f178dbb3243fca51676ec5fc26ecc80fd3ff6eb95909e6958470a89dd3714fcb429b2591ca61562871bf98cff911f1db1dbff911ce73f
7
+ data.tar.gz: 4bae139137bbb77adf64b58bdf44e41829c7e3955f832b6d5d2894fcf956fad13444bf7f3aff2d32dc586e9a94d142e323b3a0ee44366d0a20564b0423643e1a
data/MIT-LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright 2014 YOURNAME
1
+ Copyright 2014 Hayden Ball
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/README.md CHANGED
@@ -6,8 +6,16 @@ Responsive design for ActiveAdmin.
6
6
  Installation
7
7
  ------------
8
8
 
9
+ Add to your Gemfile
10
+
11
+ ```ruby
12
+ gem 'responsive_active_admin'
13
+ ```
14
+
9
15
  In `app/assets/stylesheets/active_admin.css.scss`
10
16
 
11
- @import "responsive_active_admin"
17
+ ```sass
18
+ @import "responsive_active_admin"
19
+ ```
12
20
 
13
21
  Released under the MIT-LICENSE.
@@ -8,6 +8,12 @@
8
8
  padding: 10px 22px;
9
9
  }
10
10
 
11
+ h1 {
12
+ @include responsive {
13
+ padding-left: 10px;
14
+ }
15
+ }
16
+
11
17
  ul.tabs {
12
18
  @include responsive {
13
19
  display: block;
@@ -22,6 +28,13 @@
22
28
 
23
29
  #utility_nav {
24
30
  @include responsive {
31
+ display: block;
32
+
33
+ margin-top: 5px;
34
+ padding-top: 5px;
35
+
36
+ border-top: #444 1px solid;
37
+
25
38
  text-align: left;
26
39
  }
27
40
 
@@ -1,6 +1,7 @@
1
1
  #title_bar {
2
- #titlebar_left, #titlebar_right {
2
+ #titlebar_left, #titlebar_right, #page_title {
3
3
  @include responsive {
4
+ height: auto;
4
5
  display: block;
5
6
  }
6
7
  }
@@ -1,3 +1,3 @@
1
1
  module ResponsiveActiveAdmin
2
- VERSION = "0.0.1"
2
+ VERSION = '0.0.2'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: responsive_active_admin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hayden Ball