Skip to content
This repository was archived by the owner on Dec 16, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 2 additions & 0 deletions README/inputs.conf.spec
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ github_repo = Name of repository. Example: https://api.github.com/owner/[REPOSIT
[github_api_repos_commits://<name>]
github_owner = Name of user or Github organization which owns the repository. Example: https://api.github.com/[OWNER]/repo
github_repo = Name of repository. Example: https://api.github.com/owner/[REPOSITORY]
github_repotype = Type of repository. Can be one of: all, public, private, forks, sources, member
github_creds = Select stored credentials with appropriate access to specified Github repository.
ignore_history = Check to index data from the most recent commit only.

[github_api_repos_issues://<name>]
github_owner = Name of user or Github organization which owns the repository. Example: https://api.github.com/[OWNER]/repo
Expand Down
53 changes: 21 additions & 32 deletions appserver/static/css/bootstrap-enterprise.css
Original file line number Diff line number Diff line change
Expand Up @@ -3222,7 +3222,6 @@ table.form tr:last-child .help-block {

.shared-controls-syntheticradiocontrol .btn-radio.disabled:before {
background: #e6e6e6;
-webkit-filter: none;
filter: none;
border-color: #ccc;
}
Expand Down Expand Up @@ -3471,6 +3470,14 @@ table.form tr:last-child .help-block {
display: block;
}

.controls-split.input-prepend .btn-group {
margin-right: -1px;
}

.controls-split.input-append .btn-group {
margin-left: -1px;
}

.input-append input + .add-on.dropdown-toggle {
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
Expand Down Expand Up @@ -4646,7 +4653,6 @@ body.print .header-table-docked,

.tourbar .btn {
background: transparent;
-webkit-filter: none;
filter: none;
border-color: #999;
color: #eee;
Expand Down Expand Up @@ -6506,7 +6512,6 @@ button.close {
.btn.disabled:focus,
.btn[disabled]:focus {
background: #e6e6e6;
-webkit-filter: none;
filter: none;
border-color: #ccc;
border-top-color: #ccc;
Expand All @@ -6531,7 +6536,6 @@ button.close {
box-shadow: 0px 1px 1px rgba(0,0,0,0.08);
color: #333;
text-decoration: none;
-webkit-filter: none;
filter: none;
color: #333;
}
Expand Down Expand Up @@ -6594,7 +6598,6 @@ button.close {
box-shadow: 0px 1px 1px rgba(0,0,0,0.08);
color: #fff;
text-decoration: none;
-webkit-filter: none;
filter: none;
color: #fff;
}
Expand Down Expand Up @@ -7457,8 +7460,10 @@ body.locale-de .btn-group-radio.locale-responsive-layout .btn:last-child {
right: 0;
bottom: 0;
transform: skew(20deg, 0);
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
/* See https://github.com/twitter/bootstrap/issues/5319 */
-webkit-backface-visibility: visible;
backface-visibility: visible;
background-color: rgb(243, 243, 243);
background-image: linear-gradient(to bottom, rgb(247, 247, 247), #eee);
Expand Down Expand Up @@ -7522,8 +7527,10 @@ body.locale-de .btn-group-radio.locale-responsive-layout .btn:last-child {
border-top-color: #bfbfbf;
border-bottom: 1px solid #fff;
transform: skew(-20deg, 0);
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
/* See https://github.com/twitter/bootstrap/issues/5319 */
-webkit-backface-visibility: visible;
backface-visibility: visible;
bottom: 0;
}
Expand All @@ -7541,8 +7548,10 @@ body.locale-de .btn-group-radio.locale-responsive-layout .btn:last-child {
border-top: 1px solid #bfbfbf;
border-bottom: 1px solid #fff;
transform: skew(20deg, 0);
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
/* See https://github.com/twitter/bootstrap/issues/5319 */
-webkit-backface-visibility: visible;
backface-visibility: visible;
}

Expand Down Expand Up @@ -9921,7 +9930,7 @@ a.label:hover,
width: 16px;
height: 16px;
margin-left: -8px;
margin-top: -8px;
margin-top: -9px;
text-indent: 0;
font-size: 11px;
font-family: "Splunk Icons";
Expand All @@ -9940,7 +9949,7 @@ a.label:hover,

.ui-datepicker .ui-datepicker-prev .ui-icon:after {
content: "\25C0";
margin-left: -5px
margin-left: -4px
}

.ui-datepicker .ui-datepicker-next {
Expand All @@ -9951,7 +9960,7 @@ a.label:hover,

.ui-datepicker .ui-datepicker-next .ui-icon:after {
content: "\25B6";
margin-left: -4px;
margin-left: -3px;
/* not sure why this doesn't match up */
}

Expand Down Expand Up @@ -10159,6 +10168,7 @@ a.label:hover,
.dashboard-header {
margin-bottom: 10px;
padding-top: 10px;
min-height: 28px;

/* .dashboard-view-controls { */
/* > a:first-child { */
Expand Down Expand Up @@ -11250,30 +11260,6 @@ a.label:hover,
font-weight: normal;
}

/* SPL-65856 - workaround for time range picker in modal */
.timerange > label {
color: #000;
float: left;
width: 160px;
padding-top: 5px;
text-align: right;
}
.timerange > .controls {
margin-left: 180px;
}

/* even more ghetto we can't re-use the same selectors from above ;_; */
.timerange > .control-group > label {
color: #000;
float: left;
width: 160px;
padding-top: 5px;
text-align: right;
}
.timerange > .control-group > .controls {
margin-left: 180px;
}

/* Licensing tab content */
.page-licensing .tab-content {
background-color: rgb(252, 252, 252);
Expand Down Expand Up @@ -11475,6 +11461,9 @@ a.label:hover,
.input-editor-body .input-editor-format .dynamic-input-settings-body .splunk-timerange {
margin-bottom: 10px;
}
.input-editor-body .input-editor-format .dynamic-input-settings-body .search-field-wrapper {
width: 220px;
}
.input-editor-body .control-label {
width: 125px;
float: left;
Expand Down
2 changes: 2 additions & 0 deletions appserver/static/js/build/0.js

Large diffs are not rendered by default.

Loading