Skip to content

Commit

Permalink
first icons for the new theme
Browse files Browse the repository at this point in the history
first icons for the new theme
  • Loading branch information
Animtim committed May 27, 2016
1 parent 4854b67 commit cc3a853
Show file tree
Hide file tree
Showing 234 changed files with 21,762 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@

.directory
196 changes: 196 additions & 0 deletions html/themes/breezy/datepicker.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,196 @@


div.datepicker {
position:absolute;
text-align:center;
border:1px #AAA solid;
font-family:arial;
background:#FFF;
font-size:10px;
padding:0;
}

div.datepicker-calendar table {
font-size:10px;
border:1px solid #FFF;
margin:0;
padding:0;
text-align:center;
}

div.datepicker div.datepicker-header {
font-size:11px;
font-weight:bold;
background:#F0F0F0;
border-bottom:1px solid #AAA;
padding:2px;
text-align:center;
}

div.datepicker table.header {
width:175px;
border:0;
padding:0;
text-align:center;
border-spacing:0;
border-collapse:collapse;
}

td.prev,td.prev_year,td.next,td.next_year {
width:8%;
cursor:pointer;
font-weight:bold;
line-height:16px;
}

td.prev:hover,td.prev_year:hover,td.next:hover,td.next_year:hover {
background-color:#D0D0D0;
}

td.header {
text-align:center;
width:68%;
font-weight:bold;
line-height:16px;
}

div.datepicker-header {
height:16px;
}

div.datepicker-calendar table tbody tr {
border:1px solid #FFF;
margin:0;
padding:0;
}

div.datepicker-calendar table tbody tr td {
border:1px #EAEAEA solid;
margin:0;
padding:0;
text-align:center;
height:16px;
line-height:16px;
width:21px;
cursor:pointer;
}

div.datepicker-calendar table tbody tr td:hover,div.datepicker-calendar table tbody tr td.outbound:hover,div.datepicker-calendar table tbody tr td.today:hover {
border:1px #CCE9FF solid;
background:#E9F5FF;
cursor:pointer;
}

div.datepicker-calendar table tbody tr td.wday {
border:1px #AAA solid;
background:#CCC;
cursor:text;
width:21px;
height:16px;
line-height:16px;
font-weight:bold;
}

div.datepicker-calendar table tbody tr td.outbound {
background:#F4F3F3;
}

div.datepicker-calendar table tbody tr td.today {
border:1px #CCE9FF solid;
background:#E9F5FF;
background-image:url(../../images/date_active.png);
background-repeat:no-repeat;
width:21px;
height:16px;
line-height:16px;
}

div.datepicker-calendar table tbody tr td.today:hover {
border:1px #CCE9FF solid;
background:#E9F5FF;
background-image:url(../../images/date_active.png);
background-repeat:no-repeat;
}

div.datepicker-calendar table tbody tr td.nclick,div.datepicker-calendar table tbody tr td.nclick_outbound {
cursor:default;
color:#aaa;
width:21px;
height:16px;
line-height:16px;
}

div.datepicker-calendar table tbody tr td.nclick_outbound {
background:#E8E4E4;
width:21px;
height:16px;
line-height:16px;
}

div.datepicker-calendar table tbody tr td.nclick:hover,div.datepicker-calendar table tbody tr td.nclick_outbound:hover {
border:1px #EAEAEA solid;
background:#FFF;
}

div.datepicker-calendar table tbody tr td.nclick_outbound:hover {
background:#E8E4E4;
}

div.datepicker div.datepicker-footer {
font-size:10px;
background:#F0F0F0;
border-top:1px solid #AAA;
cursor:pointer;
text-align:center;
padding:2px;
}

.date {
float:left;
text-align:center;
width:90px;
}
html.rtl .date {
float:right;
}

.datepicker-opener-table {
border:1px solid transparent;
padding:0;
border-spacing:0;
margin:0 0 0 93px;
background:transparent url(../../geticon.php?context=applications&icon=office-calendar&size=16) no-repeat 0 0;
width:18px;
height:18px;
cursor:pointer;
}
html.rtl .datepicker-opener-table {
margin:0 93px 0 0;
}

.Opera .datepicker-opener-table {
float:right;
}
html.rtl .Opera .datepicker-opener-table {
float:left;
}

.IE7 .datepicker-opener-table {
position:relative;
top:0;
left:3px;
}
html.rtl .IE7 .datepicker-opener-table {
right:3px;
left:auto;
}

.datepicker-opener {
width:16px;
height:16px;
margin:0 0 0 3px;
cursor:pointer;
}
html.rtl .datepicker-opener {
margin:0 3px 0 0;
}
32 changes: 32 additions & 0 deletions html/themes/breezy/dialog.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@

div.msgtitle {
width:auto;
background-color:#F0F0F0;
border: solid 1px #BBBBBB;
margin-bottom:7px;
}
div.msgtitle h2 {
margin:10px;
}

div.msgdialog {
width:60%;
z-index:150;
position:relative;
display:none;
margin:auto;
top:200px;
}
@media (max-height: 600px) {
div.msgdialog {
top:auto;
}
}

/* Small screens (i.e. phones) */
@media (max-width: 640px) {
div.msgdialog {
top:auto;
width:auto;
}
}
27 changes: 27 additions & 0 deletions html/themes/breezy/form.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
input, input:focus, select, textarea, textarea:focus {
font-size:12px;
}

input[type=text], input[type=password], select {
padding:2px;
}

input[disabled] {
color:#888;
background-color:#DDD;
}

textarea[disabled], select[disabled] {
color:#000;
background-color:#DDD;
}

/* On small screens */
@media (max-width: 640px) {
input[type=text], input[type=password], input[type=file], textarea, select {
max-width:100%;
}
input.base_selector {
max-width:100px;
}
}
Binary file added html/themes/breezy/icons/16/actions/add.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions html/themes/breezy/icons/16/actions/document-export.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added html/themes/breezy/icons/16/actions/document-new.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions html/themes/breezy/icons/16/actions/document-save.png
Binary file added html/themes/breezy/icons/16/actions/down.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added html/themes/breezy/icons/16/actions/edit-copy.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added html/themes/breezy/icons/16/actions/edit-cut.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added html/themes/breezy/icons/16/actions/edit-delete.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added html/themes/breezy/icons/16/actions/edit-paste.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added html/themes/breezy/icons/16/actions/export.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added html/themes/breezy/icons/16/actions/go-first.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added html/themes/breezy/icons/16/actions/go-home.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added html/themes/breezy/icons/16/actions/go-previous.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions html/themes/breezy/icons/16/actions/go-up.png
Binary file added html/themes/breezy/icons/16/actions/next.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions html/themes/breezy/icons/16/actions/previous.png
Binary file added html/themes/breezy/icons/16/actions/process-stop.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added html/themes/breezy/icons/16/actions/remove.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added html/themes/breezy/icons/16/actions/save.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added html/themes/breezy/icons/16/actions/snapshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added html/themes/breezy/icons/16/actions/submit.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions html/themes/breezy/icons/16/actions/system-reboot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added html/themes/breezy/icons/16/actions/tools-wizard.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added html/themes/breezy/icons/16/actions/up.png
Binary file added html/themes/breezy/icons/16/actions/view-refresh.png
Binary file added html/themes/breezy/icons/16/apps/antivirus.png
Binary file added html/themes/breezy/icons/16/apps/apache.png
Binary file added html/themes/breezy/icons/16/apps/imap.png
Binary file added html/themes/breezy/icons/16/apps/internet-mail.png
Binary file added html/themes/breezy/icons/16/apps/ldap.png
Binary file added html/themes/breezy/icons/16/apps/office-calendar.png
Binary file added html/themes/breezy/icons/16/apps/os-linux.png
Binary file added html/themes/breezy/icons/16/apps/os-windows.png
Binary file added html/themes/breezy/icons/16/apps/smtp.png
Binary file added html/themes/breezy/icons/16/apps/spamassassin.png
Binary file added html/themes/breezy/icons/16/categories/acl.png
Binary file added html/themes/breezy/icons/16/categories/settings.png
Binary file added html/themes/breezy/icons/16/devices/computer.png
Binary file added html/themes/breezy/icons/16/devices/media-cdrom.png
Binary file added html/themes/breezy/icons/16/devices/phone.png
Binary file added html/themes/breezy/icons/16/devices/printer.png
Binary file added html/themes/breezy/icons/16/devices/server.png
Binary file added html/themes/breezy/icons/16/devices/telephone.png
Binary file added html/themes/breezy/icons/16/devices/terminal.png
Binary file added html/themes/breezy/icons/16/mimetypes/text-csv.png
Binary file added html/themes/breezy/icons/16/places/folder.png
Binary file added html/themes/breezy/icons/16/status/dialog-error.png
Binary file added html/themes/breezy/icons/16/status/locked.png
1 change: 1 addition & 0 deletions html/themes/breezy/icons/16/status/object-locked.png
1 change: 1 addition & 0 deletions html/themes/breezy/icons/16/status/object-unlocked.png
Binary file added html/themes/breezy/icons/16/status/task-complete.png
Binary file added html/themes/breezy/icons/16/status/task-failure.png
Binary file added html/themes/breezy/icons/16/status/task-running.png
Binary file added html/themes/breezy/icons/16/status/task-stopped.png
Binary file added html/themes/breezy/icons/16/status/unlocked.png
Binary file added html/themes/breezy/icons/16/types/action.png
Binary file added html/themes/breezy/icons/16/types/application.png
Binary file added html/themes/breezy/icons/16/types/contact.png
Binary file added html/themes/breezy/icons/16/types/country.png
Binary file added html/themes/breezy/icons/16/types/dc.png
Binary file added html/themes/breezy/icons/16/types/domain.png
Binary file added html/themes/breezy/icons/16/types/locality.png
Binary file added html/themes/breezy/icons/16/types/organization.png
Binary file added html/themes/breezy/icons/16/types/resource-group.png
Binary file added html/themes/breezy/icons/16/types/role.png
Binary file added html/themes/breezy/icons/16/types/user-group.png
Binary file added html/themes/breezy/icons/16/types/user.png
Binary file added html/themes/breezy/icons/22/actions/go-home.png
Binary file added html/themes/breezy/icons/22/status/dialog-error.png
Binary file added html/themes/breezy/icons/32/status/dialog-error.png
Binary file added html/themes/breezy/icons/32/status/object-locked.png
Binary file added html/themes/breezy/icons/48/actions/view-task.png
Binary file added html/themes/breezy/icons/48/apps/apache.png
Binary file added html/themes/breezy/icons/48/apps/internet-mail.png
Binary file added html/themes/breezy/icons/48/apps/os-linux.png
Binary file added html/themes/breezy/icons/48/apps/samba.png
Binary file added html/themes/breezy/icons/48/categories/acl.png
Binary file added html/themes/breezy/icons/48/devices/computer.png
Binary file added html/themes/breezy/icons/48/places/folder.png
Binary file added html/themes/breezy/icons/48/types/contact.png
Binary file added html/themes/breezy/icons/48/types/role.png
Binary file added html/themes/breezy/icons/48/types/user-group.png
Binary file added html/themes/breezy/icons/48/types/user.png
Loading

0 comments on commit cc3a853

Please sign in to comment.