This file is indexed.

/usr/share/ubuntu-sso-client/qt/stylesheet.qss is in ubuntu-sso-client-qt 3.0.0-0ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
QWidget {
    color: #333333;
    background-color: white;
}

QFrame#ubuntussoframe {
    background-color: white;
    padding-left: 30px;
    padding-right: 30px;
}

QWizard,
QDialog {
    background-color: white;
}

QLabel#password_assistance {
    border-image: url(":/balloon_shape.png");
}

QLineEdit {
    border: 1px solid #aea79f;
}

QPushButton {
    border-radius: 5px;
    border-style: solid;
    padding: 6px;
    padding-left: 20px;
    padding-right: 20px;
    border-width: 1px;
}

QPushButton:default:enabled {
    background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
        stop: 0 #fe9e84,stop: 1.0 #dd4814);
    color: white;
    border-color: #999999;
}

QPushButton:hover:default:enabled {
    background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
        stop: 0 #ffb19c,stop: 1.0 #dd4814);
    color: white;
    border-color: #999999;
}

QPushButton:pressed:default:enabled {
    background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
        stop: 0 #b93f14,stop: 1.0 #dd4814);
    color: white;
    border-color: #999999;
}

QPushButton:enabled {
    background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
        stop: 0 #ffffff,stop: 1.0 #e6e6e6);
    color: #333333;
    border-color: #999999;
}

QPushButton:hover:enabled {
    background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
        stop: 0 #ffffff,stop: 1.0 #ededed);
    color: #333333;
    border-color: #999999;
}

QPushButton:pressed:enabled {
    background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
        stop: 0 #d9d9d9,stop: 1.0 #fefefe);
    color: #333333;
    border-color: #999999;
}

QPushButton:disabled {
    background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
        stop: 0 #eaeaea, stop: 1.0 #cacaca);
    color: #595959;
    border-color: #939389;
}

QFrame#frm_box {
    border-radius: 5px;
    border-style: solid;
    border-color: #939389;
    border-width: 1px;
    color: white;
    min-height: 100px;
}

LoadingOverlay {
    background: transparent;
}

WizardHeader {
    padding-top: 1px;
    padding-bottom: 1px;
}

QLabel#form_errors {
    padding-bottom: 1px;
}