Projet

Général

Profil

Paste
Télécharger (696 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / media / modules / media_wysiwyg / css / media_wysiwyg.css @ b3ab3446

1
/**
2
 * @file
3
 * Styles for the format form.
4
 *
5
 * The display and layout of the Media browser assumes Drupal's Seven theme as
6
 * the theme active when this is displayed.
7
 */
8

    
9
#media-wysiwyg-format-form {
10
  margin: 20px;
11
}
12

    
13
#media-wysiwyg-format-form .media-item {
14
  float: left;
15
  margin-right: 10px;
16
}
17

    
18
#media-wysiwyg-format-form .form-item-format label {
19
  display: inline;
20
}
21

    
22
/* Styles for within the WYSIWYG, to support alignment. */
23
.media-wysiwyg-align-left {
24
  float: left;
25
  margin-right: 20px;
26
}
27
.media-wysiwyg-align-right {
28
  float: right;
29
  margin-left: 20px;
30
}
31
.media-wysiwyg-align-center {
32
  text-align: center;
33
}
34
img.media-wysiwyg-align-center {
35
  margin: auto;
36
  display: block;
37
}