summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources/local_ntp/most_visited_title.css
blob: 41e1b06e23eff9235822b283193d5013012c91f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* Copyright 2013 The Chromium Authors. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file. */
html {
  height: 100%;
}

body {
  height: 100%;
  width: 100%;
}

a {
  height: 100%;
  line-height: 117%;
  overflow: hidden;
  text-align: center;  /* Can be overridden in JS. */
  text-overflow: ellipsis;  /* Can be overridden in JS. */
  white-space: nowrap;  /* Can be overridden in JS. */
}

a.multiline {
  text-overflow: clip;
  white-space: pre-wrap;
  word-wrap: break-word;
}

a:focus {
  outline: none;  /* Remove outline from tabIndex = -1. */
}