Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 31200c26c43fba5dd32fa8661e57cfd9e41193c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*******************************************************************************
 * Copyright (c) 2013 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials	
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at	
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:	
 *     IBM Corporation - initial API and implementation	
 ******************************************************************************/

package org.eclipse.e4.ui.internal.workbench.swt;

public class CSSConstants {
	public static final String CSS_BUSY_CLASS = "busy";

	public static final String CSS_ACTIVE_CLASS = "active";

	public static final String CSS_HIGHLIGHTED_CLASS = "highlighted";

	public static final String CSS_CONTENT_CHANGE_CLASS = "contentChange";
}

Back to the top