~ubuntu-branches/ubuntu/utopic/horizon/utopic

« back to all changes in this revision

Viewing changes to openstack_dashboard/static/bootstrap/less/utilities.less

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2014-07-25 11:39:09 UTC
  • mfrom: (1.1.42)
  • Revision ID: package-import@ubuntu.com-20140725113909-b8920pdy87itn1ro
Tags: 1:2014.2~b2-0ubuntu1
* New upstream release.
* debian/patches/ubuntu_settings.patch: Refresed
* debian/patches/fix-dashboard-manage.patch: Refreshed
* debian/patches/fix-dashboard-django-wsgi.patch: Refreshed

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// UTILITY CLASSES
2
 
// ---------------
3
 
 
4
 
// Quick floats
5
 
.pull-right {
6
 
  float: right;
7
 
}
8
 
.pull-left {
9
 
  float: left;
10
 
}
11
 
 
12
 
// Toggling content
13
 
.hide {
14
 
  display: none;
15
 
}
16
 
.show {
17
 
  display: block;
18
 
}
19
 
 
20
 
// Visibility
21
 
.invisible {
22
 
  visibility: hidden;
23
 
}