~marcobiscaro2112/ubuntu/natty/ubiquity-slideshow-ubuntu/fix-692879

« back to all changes in this revision

Viewing changes to slideshows/xubuntu/slides/link/general.css

  • Committer: Bazaar Package Importer
  • Author(s): Evan Dandrea, Dylan McCall, Jonathan Riddell, Evan Dandrea
  • Date: 2010-04-07 09:35:22 UTC
  • Revision ID: james.westby@ubuntu.com-20100407093522-b8iwxl3cpd9qxutq
Tags: 21
[ Dylan McCall ]
* Ubuntu slideshow: New icons. Fixes centering (LP: #552510).
* Added personalize.png and media.png, replacing accessibility.png
  and rhythmbox.png, respectively.
* Small CSS changes: title block is narrower, exception for Firefox
  icon, removed icon.exact property.
* Firefox icon now points to the correct file (LP: #421864).
* Fixed RTL for Ubuntu slideshow (LP: #549357).
* Fixed RTL for Kubuntu slideshow (LP: #537635).

[ Jonathan Riddell ]
* Update kubuntu-logo.png with new logo

[ Evan Dandrea ]
* Update translations from Launchpad.

Show diffs side-by-side

added added

removed removed

Lines of Context:
120
120
{
121
121
        padding-left:16px;
122
122
        padding-right:16px;
123
 
        
 
123
 
124
124
        width:490px;
125
125
}
126
126
 
183
183
}
184
184
 
185
185
/*
186
 
The menu-item style is a descriptive aid for pointing the end user at,
187
 
for example, a place in either the system menu or an application menu.
188
 
This way we can provide clear visual cues with minimal babbling.
189
 
*/
190
 
.menu-item
191
 
{
192
 
        display:inline-block;
193
 
        
194
 
        border-radius:3px;
195
 
        -webkit-border-radius:3px;
196
 
        -moz-border-radius:3px;
197
 
        
198
 
        height:16px;
199
 
        padding:1px;
200
 
        
201
 
        padding-left:3px;
202
 
        padding-right:3px;
203
 
        
204
 
        border-style:solid;
205
 
        border-width:1px;
206
 
        border-color:#a89a8d;
207
 
        
208
 
        background-color:#f7f5f3;
209
 
}
210
 
 
211
 
/*
212
 
This rule applies to an img of class menu-arrow. It appears as a nice
213
 
looking arrow that can separate items in a menu much like how submenus
214
 
look in Ubuntu's GTK theme.
215
 
*/
216
 
.menu-item img.menu-arrow
217
 
{
218
 
        display:inline-block;
219
 
        content:url('menu-arrow.png');
220
 
        
221
 
        padding-left:2px;
222
 
        padding-right:5px;
223
 
}
224
 
 
225
 
/*
226
186
This rule disables drag-and-drop for images.  See bug #448703.
227
187
*/
228
188
img
229
189
{
230
190
        -webkit-user-drag: none;
231
191
}
 
192